| 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 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 | 483 |
| 484 if (rtc_enable_intelligibility_enhancer) { | 484 if (rtc_enable_intelligibility_enhancer) { |
| 485 public_deps += [ ":intelligibility_proc" ] | 485 public_deps += [ ":intelligibility_proc" ] |
| 486 } | 486 } |
| 487 | 487 |
| 488 if (rtc_enable_protobuf) { | 488 if (rtc_enable_protobuf) { |
| 489 public_deps += [ | 489 public_deps += [ |
| 490 ":audioproc_f", | 490 ":audioproc_f", |
| 491 ":audioproc_unittest_proto", | 491 ":audioproc_unittest_proto", |
| 492 ":unpack_aecdump", | 492 ":unpack_aecdump", |
| 493 "aec_dump:aec_dump_unittests", |
| 493 "test/conversational_speech", | 494 "test/conversational_speech", |
| 494 "test/py_quality_assessment", | 495 "test/py_quality_assessment", |
| 495 ] | 496 ] |
| 496 } | 497 } |
| 497 } | 498 } |
| 498 | 499 |
| 499 rtc_source_set("audio_processing_unittests") { | 500 rtc_source_set("audio_processing_unittests") { |
| 500 testonly = true | 501 testonly = true |
| 501 | 502 |
| 502 # Skip restricting visibility on mobile platforms since the tests on those | 503 # Skip restricting visibility on mobile platforms since the tests on those |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 "test/wav_based_simulator.h", | 732 "test/wav_based_simulator.h", |
| 732 ] | 733 ] |
| 733 | 734 |
| 734 deps = [ | 735 deps = [ |
| 735 ":audio_processing", | 736 ":audio_processing", |
| 736 ":audioproc_debug_proto", | 737 ":audioproc_debug_proto", |
| 737 ":audioproc_protobuf_utils", | 738 ":audioproc_protobuf_utils", |
| 738 ":audioproc_test_utils", | 739 ":audioproc_test_utils", |
| 739 "../../base:protobuf_utils", | 740 "../../base:protobuf_utils", |
| 740 "../../base:rtc_base_approved", | 741 "../../base:rtc_base_approved", |
| 742 "../../base:rtc_task_queue", |
| 741 "../../common_audio:common_audio", | 743 "../../common_audio:common_audio", |
| 742 "../../system_wrappers", | 744 "../../system_wrappers", |
| 743 "../../system_wrappers:system_wrappers_default", | 745 "../../system_wrappers:system_wrappers_default", |
| 744 "../../test:test_support", | 746 "../../test:test_support", |
| 747 "aec_dump", |
| 745 "//testing/gtest", | 748 "//testing/gtest", |
| 746 "//third_party/gflags:gflags", | 749 "//third_party/gflags:gflags", |
| 747 ] | 750 ] |
| 748 } # audioproc_f | 751 } # audioproc_f |
| 749 } | 752 } |
| 750 | 753 |
| 751 rtc_source_set("audioproc_test_utils") { | 754 rtc_source_set("audioproc_test_utils") { |
| 752 testonly = true | 755 testonly = true |
| 753 sources = [ | 756 sources = [ |
| 754 "test/audio_buffer_tools.cc", | 757 "test/audio_buffer_tools.cc", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 | 856 |
| 854 deps = [ | 857 deps = [ |
| 855 ":audioproc_debug_proto", | 858 ":audioproc_debug_proto", |
| 856 "../..:webrtc_common", | 859 "../..:webrtc_common", |
| 857 "../../base:protobuf_utils", | 860 "../../base:protobuf_utils", |
| 858 "../../base:rtc_base_approved", | 861 "../../base:rtc_base_approved", |
| 859 ] | 862 ] |
| 860 } | 863 } |
| 861 } | 864 } |
| 862 } | 865 } |
| OLD | NEW |