| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 | 404 |
| 405 if (rtc_enable_intelligibility_enhancer) { | 405 if (rtc_enable_intelligibility_enhancer) { |
| 406 public_deps += [ ":intelligibility_proc" ] | 406 public_deps += [ ":intelligibility_proc" ] |
| 407 } | 407 } |
| 408 | 408 |
| 409 if (rtc_enable_protobuf) { | 409 if (rtc_enable_protobuf) { |
| 410 public_deps += [ ":audioproc_unittest_proto" ] | 410 public_deps += [ ":audioproc_unittest_proto" ] |
| 411 } | 411 } |
| 412 } | 412 } |
| 413 | 413 |
| 414 rtc_source_set("audio_processing_perf_tests") { |
| 415 # Has problems with autogenerated targets on Android and iOS |
| 416 # Dependency chain (there may also be others): |
| 417 # //webrtc/modules/audio_processing:audio_processing_perf_tests --> |
| 418 # //webrtc/modules:modules_unittests --[private]--> |
| 419 # //webrtc/modules:modules_unittests_apk --> |
| 420 # //webrtc/modules:modules_unittests_apk__create --> |
| 421 # //webrtc/modules:modules_unittests_apk__create__finalize --> |
| 422 # //webrtc/modules:modules_unittests_apk__create__package --[private]--> |
| 423 # //webrtc/modules:_modules_unittests__library |
| 424 check_includes = false |
| 425 testonly = true |
| 426 sources = [ |
| 427 "audio_processing_performance_unittest.cc", |
| 428 "level_controller/level_controller_complexity_unittest.cc", |
| 429 "residual_echo_detector_complexity_unittest.cc", |
| 430 ] |
| 431 deps = [ |
| 432 ":audio_processing", |
| 433 ":audioproc_test_utils", |
| 434 "//testing/gtest", |
| 435 ] |
| 436 if (rtc_enable_intelligibility_enhancer) { |
| 437 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] |
| 438 } else { |
| 439 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] |
| 440 } |
| 441 } |
| 442 |
| 414 rtc_executable("unpack_aecdump") { | 443 rtc_executable("unpack_aecdump") { |
| 415 testonly = true | 444 testonly = true |
| 416 sources = [ | 445 sources = [ |
| 417 "test/unpack.cc", | 446 "test/unpack.cc", |
| 418 ] | 447 ] |
| 419 | 448 |
| 420 deps = [ | 449 deps = [ |
| 421 ":audio_processing", | 450 ":audio_processing", |
| 422 ":audioproc_debug_proto", | 451 ":audioproc_debug_proto", |
| 423 ":audioproc_protobuf_utils", | 452 ":audioproc_protobuf_utils", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 ] | 588 ] |
| 560 | 589 |
| 561 deps = [ | 590 deps = [ |
| 562 ":audioproc_debug_proto", | 591 ":audioproc_debug_proto", |
| 563 "../..:webrtc_common", | 592 "../..:webrtc_common", |
| 564 "../../base:rtc_base_approved", | 593 "../../base:rtc_base_approved", |
| 565 ] | 594 ] |
| 566 } | 595 } |
| 567 } | 596 } |
| 568 } | 597 } |
| OLD | NEW |