| OLD | NEW |
| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 deps = [ | 280 deps = [ |
| 281 "../../media:media", | 281 "../../media:media", |
| 282 ] | 282 ] |
| 283 } | 283 } |
| 284 | 284 |
| 285 webrtc_fuzzer_test("neteq_rtp_fuzzer") { | 285 webrtc_fuzzer_test("neteq_rtp_fuzzer") { |
| 286 sources = [ | 286 sources = [ |
| 287 "neteq_rtp_fuzzer.cc", | 287 "neteq_rtp_fuzzer.cc", |
| 288 ] | 288 ] |
| 289 deps = [ | 289 deps = [ |
| 290 "../../api:array_view", |
| 290 "../../modules/audio_coding:neteq", | 291 "../../modules/audio_coding:neteq", |
| 291 "../../modules/audio_coding:neteq_test_tools", | 292 "../../modules/audio_coding:neteq_test_tools", |
| 292 "../../modules/audio_coding:neteq_tools_minimal", | 293 "../../modules/audio_coding:neteq_tools_minimal", |
| 293 "../../modules/audio_coding:pcm16b", | 294 "../../modules/audio_coding:pcm16b", |
| 294 "../../modules/rtp_rtcp", | 295 "../../modules/rtp_rtcp", |
| 295 "../../rtc_base:rtc_base_approved", | 296 "../../rtc_base:rtc_base_approved", |
| 296 "../../rtc_base:rtc_base_tests_utils", | 297 "../../rtc_base:rtc_base_tests_utils", |
| 297 ] | 298 ] |
| 298 } | 299 } |
| 299 | 300 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 "../../p2p:rtc_p2p", | 348 "../../p2p:rtc_p2p", |
| 348 "../../rtc_base:rtc_base", | 349 "../../rtc_base:rtc_base", |
| 349 ] | 350 ] |
| 350 } | 351 } |
| 351 | 352 |
| 352 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { | 353 webrtc_fuzzer_test("transport_feedback_packet_loss_tracker_fuzzer") { |
| 353 sources = [ | 354 sources = [ |
| 354 "transport_feedback_packet_loss_tracker_fuzzer.cc", | 355 "transport_feedback_packet_loss_tracker_fuzzer.cc", |
| 355 ] | 356 ] |
| 356 deps = [ | 357 deps = [ |
| 358 "../../api:array_view", |
| 357 "../../modules/rtp_rtcp", | 359 "../../modules/rtp_rtcp", |
| 358 "../../rtc_base:rtc_base_approved", | 360 "../../rtc_base:rtc_base_approved", |
| 359 "../../voice_engine", | 361 "../../voice_engine", |
| 360 ] | 362 ] |
| 361 } | 363 } |
| 362 | 364 |
| 363 webrtc_fuzzer_test("audio_processing_fuzzer") { | 365 webrtc_fuzzer_test("audio_processing_fuzzer") { |
| 364 sources = [ | 366 sources = [ |
| 365 "audio_processing_fuzzer.cc", | 367 "audio_processing_fuzzer.cc", |
| 366 "audio_processing_fuzzer.h", | 368 "audio_processing_fuzzer.h", |
| 367 "audio_processing_fuzzer_configs.cc", | 369 "audio_processing_fuzzer_configs.cc", |
| 368 ] | 370 ] |
| 369 deps = [ | 371 deps = [ |
| 370 "../../modules:module_api", | 372 "../../modules:module_api", |
| 371 "../../modules/audio_processing", | 373 "../../modules/audio_processing", |
| 372 "../../rtc_base:rtc_base_approved", | 374 "../../rtc_base:rtc_base_approved", |
| 373 ] | 375 ] |
| 374 } | 376 } |
| OLD | NEW |