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

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

Issue 2877803002: Adds fuzzer for the residual echo detector. (Closed)
Patch Set: Review comments by Henrik. Created 3 years, 7 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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 deps = [ 259 deps = [
260 "../../base:rtc_base_approved", 260 "../../base:rtc_base_approved",
261 "../../base:rtc_base_tests_utils", 261 "../../base:rtc_base_tests_utils",
262 "../../modules/audio_coding:neteq", 262 "../../modules/audio_coding:neteq",
263 "../../modules/audio_coding:neteq_tools_minimal", 263 "../../modules/audio_coding:neteq_tools_minimal",
264 "../../modules/audio_coding:pcm16b", 264 "../../modules/audio_coding:pcm16b",
265 "../../modules/rtp_rtcp", 265 "../../modules/rtp_rtcp",
266 ] 266 ]
267 } 267 }
268 268
269 webrtc_fuzzer_test("residual_echo_detector_fuzzer") {
270 sources = [
271 "residual_echo_detector_fuzzer.cc",
272 ]
273 deps = [
274 "../../base:rtc_base_approved",
275 "../../modules/audio_processing:audio_processing",
276 ]
277 }
278
269 webrtc_fuzzer_test("sdp_parser_fuzzer") { 279 webrtc_fuzzer_test("sdp_parser_fuzzer") {
270 sources = [ 280 sources = [
271 "sdp_parser_fuzzer.cc", 281 "sdp_parser_fuzzer.cc",
272 ] 282 ]
273 deps = [ 283 deps = [
274 "../../pc:libjingle_peerconnection", 284 "../../pc:libjingle_peerconnection",
275 ] 285 ]
276 seed_corpus = "corpora/sdp-corpus" 286 seed_corpus = "corpora/sdp-corpus"
277 } 287 }
278 288
(...skipping 30 matching lines...) Expand all
309 319
310 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { 320 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") {
311 sources = [ 321 sources = [
312 "transport_feedback_packet_loss_tracker_fuzzer.cc", 322 "transport_feedback_packet_loss_tracker_fuzzer.cc",
313 ] 323 ]
314 deps = [ 324 deps = [
315 "../../modules/rtp_rtcp", 325 "../../modules/rtp_rtcp",
316 "../../voice_engine", 326 "../../voice_engine",
317 ] 327 ]
318 } 328 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/residual_echo_detector.cc ('k') | webrtc/test/fuzzers/residual_echo_detector_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698