Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(763)

Side by Side Diff: webrtc/test/fuzzers/BUILD.gn

Issue 1716143002: Simple RTCP receiver fuzzer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: use implementation Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/features.gni") 9 import("//build/config/features.gni")
10 import("webrtc_fuzzer.gni") 10 import("webrtc_fuzzer.gni")
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 webrtc_fuzzer_test("producer_fec_fuzzer") { 60 webrtc_fuzzer_test("producer_fec_fuzzer") {
61 sources = [ 61 sources = [
62 "producer_fec_fuzzer.cc", 62 "producer_fec_fuzzer.cc",
63 ] 63 ]
64 deps = [ 64 deps = [
65 "../../modules/rtp_rtcp/", 65 "../../modules/rtp_rtcp/",
66 ] 66 ]
67 } 67 }
68 68
69 webrtc_fuzzer_test("rtcp_receiver_fuzzer") {
70 sources = [
71 "rtcp_receiver_fuzzer.cc",
72 ]
73 deps = [
74 "../../modules/rtp_rtcp/",
75 ]
76 }
77
69 source_set("audio_decoder_fuzzer") { 78 source_set("audio_decoder_fuzzer") {
70 public_configs = [ "../..:common_inherited_config" ] 79 public_configs = [ "../..:common_inherited_config" ]
71 sources = [ 80 sources = [
72 "audio_decoder_fuzzer.cc", 81 "audio_decoder_fuzzer.cc",
73 "audio_decoder_fuzzer.h", 82 "audio_decoder_fuzzer.h",
74 ] 83 ]
75 } 84 }
76 85
77 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") { 86 webrtc_fuzzer_test("audio_decoder_ilbc_fuzzer") {
78 sources = [ 87 sources = [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 135
127 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { 136 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
128 sources = [ 137 sources = [
129 "audio_decoder_opus_redundant_fuzzer.cc", 138 "audio_decoder_opus_redundant_fuzzer.cc",
130 ] 139 ]
131 deps = [ 140 deps = [
132 ":audio_decoder_fuzzer", 141 ":audio_decoder_fuzzer",
133 "../../modules/audio_coding:webrtc_opus", 142 "../../modules/audio_coding:webrtc_opus",
134 ] 143 ]
135 } 144 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/test/fuzzers/rtcp_receiver_fuzzer.cc » ('j') | webrtc/test/fuzzers/rtcp_receiver_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698