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

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

Issue 2328483002: Revert of Setting up an RTP input fuzzer for NetEq (Closed)
Patch Set: Created 4 years, 3 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") { 178 webrtc_fuzzer_test("audio_decoder_opus_redundant_fuzzer") {
179 sources = [ 179 sources = [
180 "audio_decoder_opus_redundant_fuzzer.cc", 180 "audio_decoder_opus_redundant_fuzzer.cc",
181 ] 181 ]
182 deps = [ 182 deps = [
183 ":audio_decoder_fuzzer", 183 ":audio_decoder_fuzzer",
184 "../../modules/audio_coding:webrtc_opus", 184 "../../modules/audio_coding:webrtc_opus",
185 ] 185 ]
186 } 186 }
187 187
188 webrtc_fuzzer_test("neteq_rtp_fuzzer") {
189 sources = [
190 "neteq_rtp_fuzzer.cc",
191 ]
192 deps = [
193 "../../modules/audio_coding:neteq",
194 "../../modules/audio_coding:neteq_unittest_tools",
195 "../../modules/audio_coding:pcm16b",
196 "../../modules/rtp_rtcp",
197 "../../test:test_support",
198 ]
199 }
200
201 # TODO(katrielc) Enable in Chromium when CL 2022833002 lands. 188 # TODO(katrielc) Enable in Chromium when CL 2022833002 lands.
202 # Although the dependency on media compiles in standalone, it is 189 # Although the dependency on media compiles in standalone, it is
203 # flagged by gn check, so breaks when rolled into Chromium. 190 # flagged by gn check, so breaks when rolled into Chromium.
204 if (!build_with_chromium) { 191 if (!build_with_chromium) {
205 webrtc_fuzzer_test("turn_unwrap_fuzzer") { 192 webrtc_fuzzer_test("turn_unwrap_fuzzer") {
206 sources = [ 193 sources = [
207 "turn_unwrap_fuzzer.cc", 194 "turn_unwrap_fuzzer.cc",
208 ] 195 ]
209 deps = [ 196 deps = [
210 "../../media:media", 197 "../../media:media",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 232
246 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") { 233 webrtc_fuzzer_test("pseudotcp_parser_fuzzer") {
247 sources = [ 234 sources = [
248 "pseudotcp_parser_fuzzer.cc", 235 "pseudotcp_parser_fuzzer.cc",
249 ] 236 ]
250 deps = [ 237 deps = [
251 "../../p2p:rtc_p2p", 238 "../../p2p:rtc_p2p",
252 ] 239 ]
253 } 240 }
254 } 241 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_coding/neteq/tools/neteq_input.h ('k') | webrtc/test/fuzzers/neteq_rtp_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698