| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 } else { | 571 } else { |
| 572 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] | 572 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] |
| 573 } | 573 } |
| 574 | 574 |
| 575 if (rtc_enable_protobuf) { | 575 if (rtc_enable_protobuf) { |
| 576 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] | 576 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] |
| 577 deps += [ | 577 deps += [ |
| 578 ":audioproc_debug_proto", | 578 ":audioproc_debug_proto", |
| 579 ":audioproc_protobuf_utils", | 579 ":audioproc_protobuf_utils", |
| 580 ":audioproc_unittest_proto", | 580 ":audioproc_unittest_proto", |
| 581 "aec_dump:aec_dump_unittests", |
| 581 ] | 582 ] |
| 582 sources += [ | 583 sources += [ |
| 583 "aec3/adaptive_fir_filter_unittest.cc", | 584 "aec3/adaptive_fir_filter_unittest.cc", |
| 584 "aec3/aec3_fft_unittest.cc", | 585 "aec3/aec3_fft_unittest.cc", |
| 585 "aec3/aec_state_unittest.cc", | 586 "aec3/aec_state_unittest.cc", |
| 586 "aec3/block_framer_unittest.cc", | 587 "aec3/block_framer_unittest.cc", |
| 587 "aec3/block_processor_metrics_unittest.cc", | 588 "aec3/block_processor_metrics_unittest.cc", |
| 588 "aec3/block_processor_unittest.cc", | 589 "aec3/block_processor_unittest.cc", |
| 589 "aec3/cascaded_biquad_filter_unittest.cc", | 590 "aec3/cascaded_biquad_filter_unittest.cc", |
| 590 "aec3/comfort_noise_generator_unittest.cc", | 591 "aec3/comfort_noise_generator_unittest.cc", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 "test/wav_based_simulator.h", | 721 "test/wav_based_simulator.h", |
| 721 ] | 722 ] |
| 722 | 723 |
| 723 deps = [ | 724 deps = [ |
| 724 ":audio_processing", | 725 ":audio_processing", |
| 725 ":audioproc_debug_proto", | 726 ":audioproc_debug_proto", |
| 726 ":audioproc_protobuf_utils", | 727 ":audioproc_protobuf_utils", |
| 727 ":audioproc_test_utils", | 728 ":audioproc_test_utils", |
| 728 "../../base:protobuf_utils", | 729 "../../base:protobuf_utils", |
| 729 "../../base:rtc_base_approved", | 730 "../../base:rtc_base_approved", |
| 731 "../../base:rtc_task_queue", |
| 730 "../../common_audio:common_audio", | 732 "../../common_audio:common_audio", |
| 731 "../../system_wrappers", | 733 "../../system_wrappers", |
| 732 "../../system_wrappers:system_wrappers_default", | 734 "../../system_wrappers:system_wrappers_default", |
| 733 "../../test:test_support", | 735 "../../test:test_support", |
| 736 "aec_dump", |
| 734 "//testing/gtest", | 737 "//testing/gtest", |
| 735 "//third_party/gflags:gflags", | 738 "//third_party/gflags:gflags", |
| 736 ] | 739 ] |
| 737 } # audioproc_f | 740 } # audioproc_f |
| 738 } | 741 } |
| 739 | 742 |
| 740 rtc_source_set("audioproc_test_utils") { | 743 rtc_source_set("audioproc_test_utils") { |
| 741 testonly = true | 744 testonly = true |
| 742 sources = [ | 745 sources = [ |
| 743 "test/audio_buffer_tools.cc", | 746 "test/audio_buffer_tools.cc", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 | 845 |
| 843 deps = [ | 846 deps = [ |
| 844 ":audioproc_debug_proto", | 847 ":audioproc_debug_proto", |
| 845 "../..:webrtc_common", | 848 "../..:webrtc_common", |
| 846 "../../base:protobuf_utils", | 849 "../../base:protobuf_utils", |
| 847 "../../base:rtc_base_approved", | 850 "../../base:rtc_base_approved", |
| 848 ] | 851 ] |
| 849 } | 852 } |
| 850 } | 853 } |
| 851 } | 854 } |
| OLD | NEW |