| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 } else { | 243 } else { |
| 244 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] | 244 defines += [ "WEBRTC_APM_DEBUG_DUMP=0" ] |
| 245 } | 245 } |
| 246 | 246 |
| 247 if (aec_untrusted_delay_for_testing) { | 247 if (aec_untrusted_delay_for_testing) { |
| 248 defines += [ "WEBRTC_UNTRUSTED_DELAY" ] | 248 defines += [ "WEBRTC_UNTRUSTED_DELAY" ] |
| 249 } | 249 } |
| 250 | 250 |
| 251 if (rtc_enable_protobuf) { | 251 if (rtc_enable_protobuf) { |
| 252 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] | 252 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] |
| 253 deps += [ ":audioproc_debug_proto" ] | 253 deps += [ |
| 254 ":audioproc_debug_proto", |
| 255 "../../base:protobuf_utils", |
| 256 ] |
| 254 } | 257 } |
| 255 | 258 |
| 256 if (rtc_enable_intelligibility_enhancer) { | 259 if (rtc_enable_intelligibility_enhancer) { |
| 257 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] | 260 defines += [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] |
| 258 sources += [ | 261 sources += [ |
| 259 "intelligibility/intelligibility_enhancer.cc", | 262 "intelligibility/intelligibility_enhancer.cc", |
| 260 "intelligibility/intelligibility_enhancer.h", | 263 "intelligibility/intelligibility_enhancer.h", |
| 261 "intelligibility/intelligibility_utils.cc", | 264 "intelligibility/intelligibility_utils.cc", |
| 262 "intelligibility/intelligibility_utils.h", | 265 "intelligibility/intelligibility_utils.h", |
| 263 ] | 266 ] |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 } else { | 559 } else { |
| 557 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] | 560 defines += [ "WEBRTC_AUDIOPROC_FLOAT_PROFILE" ] |
| 558 } | 561 } |
| 559 | 562 |
| 560 if (rtc_enable_protobuf) { | 563 if (rtc_enable_protobuf) { |
| 561 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] | 564 defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ] |
| 562 deps += [ | 565 deps += [ |
| 563 ":audioproc_debug_proto", | 566 ":audioproc_debug_proto", |
| 564 ":audioproc_protobuf_utils", | 567 ":audioproc_protobuf_utils", |
| 565 ":audioproc_unittest_proto", | 568 ":audioproc_unittest_proto", |
| 569 "../../base:protobuf_utils", |
| 566 ] | 570 ] |
| 567 sources += [ | 571 sources += [ |
| 568 "aec3/adaptive_fir_filter_unittest.cc", | 572 "aec3/adaptive_fir_filter_unittest.cc", |
| 569 "aec3/aec3_fft_unittest.cc", | 573 "aec3/aec3_fft_unittest.cc", |
| 570 "aec3/aec_state_unittest.cc", | 574 "aec3/aec_state_unittest.cc", |
| 571 "aec3/block_framer_unittest.cc", | 575 "aec3/block_framer_unittest.cc", |
| 572 "aec3/block_processor_metrics_unittest.cc", | 576 "aec3/block_processor_metrics_unittest.cc", |
| 573 "aec3/block_processor_unittest.cc", | 577 "aec3/block_processor_unittest.cc", |
| 574 "aec3/cascaded_biquad_filter_unittest.cc", | 578 "aec3/cascaded_biquad_filter_unittest.cc", |
| 575 "aec3/comfort_noise_generator_unittest.cc", | 579 "aec3/comfort_noise_generator_unittest.cc", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 sources = [ | 653 sources = [ |
| 650 "audio_processing_performance_unittest.cc", | 654 "audio_processing_performance_unittest.cc", |
| 651 "level_controller/level_controller_complexity_unittest.cc", | 655 "level_controller/level_controller_complexity_unittest.cc", |
| 652 "residual_echo_detector_complexity_unittest.cc", | 656 "residual_echo_detector_complexity_unittest.cc", |
| 653 ] | 657 ] |
| 654 deps = [ | 658 deps = [ |
| 655 ":audio_processing", | 659 ":audio_processing", |
| 656 ":audioproc_test_utils", | 660 ":audioproc_test_utils", |
| 657 "//testing/gtest", | 661 "//testing/gtest", |
| 658 ] | 662 ] |
| 663 |
| 664 if (rtc_enable_protobuf) { |
| 665 deps += [ "../../base:protobuf_utils" ] |
| 666 } |
| 667 |
| 659 if (rtc_enable_intelligibility_enhancer) { | 668 if (rtc_enable_intelligibility_enhancer) { |
| 660 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] | 669 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ] |
| 661 } else { | 670 } else { |
| 662 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] | 671 defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=0" ] |
| 663 } | 672 } |
| 664 } | 673 } |
| 665 | 674 |
| 666 if (rtc_enable_protobuf) { | 675 if (rtc_enable_protobuf) { |
| 667 rtc_executable("unpack_aecdump") { | 676 rtc_executable("unpack_aecdump") { |
| 668 testonly = true | 677 testonly = true |
| 669 sources = [ | 678 sources = [ |
| 670 "test/unpack.cc", | 679 "test/unpack.cc", |
| 671 ] | 680 ] |
| 672 | 681 |
| 673 deps = [ | 682 deps = [ |
| 674 ":audio_processing", | 683 ":audio_processing", |
| 675 ":audioproc_debug_proto", | 684 ":audioproc_debug_proto", |
| 676 ":audioproc_protobuf_utils", | 685 ":audioproc_protobuf_utils", |
| 677 ":audioproc_test_utils", | 686 ":audioproc_test_utils", |
| 678 "../..:webrtc_common", | 687 "../..:webrtc_common", |
| 688 "../../base:protobuf_utils", |
| 679 "../../base:rtc_base_approved", | 689 "../../base:rtc_base_approved", |
| 680 "../../common_audio", | 690 "../../common_audio", |
| 681 "../../system_wrappers:system_wrappers_default", | 691 "../../system_wrappers:system_wrappers_default", |
| 682 "//third_party/gflags:gflags", | 692 "//third_party/gflags:gflags", |
| 683 ] | 693 ] |
| 684 } # unpack_aecdump | 694 } # unpack_aecdump |
| 685 | 695 |
| 686 rtc_executable("audioproc_f") { | 696 rtc_executable("audioproc_f") { |
| 687 testonly = true | 697 testonly = true |
| 688 sources = [ | 698 sources = [ |
| 689 "test/aec_dump_based_simulator.cc", | 699 "test/aec_dump_based_simulator.cc", |
| 690 "test/aec_dump_based_simulator.h", | 700 "test/aec_dump_based_simulator.h", |
| 691 "test/audio_processing_simulator.cc", | 701 "test/audio_processing_simulator.cc", |
| 692 "test/audio_processing_simulator.h", | 702 "test/audio_processing_simulator.h", |
| 693 "test/audioproc_float.cc", | 703 "test/audioproc_float.cc", |
| 694 "test/wav_based_simulator.cc", | 704 "test/wav_based_simulator.cc", |
| 695 "test/wav_based_simulator.h", | 705 "test/wav_based_simulator.h", |
| 696 ] | 706 ] |
| 697 | 707 |
| 698 deps = [ | 708 deps = [ |
| 699 ":audio_processing", | 709 ":audio_processing", |
| 700 ":audioproc_debug_proto", | 710 ":audioproc_debug_proto", |
| 701 ":audioproc_protobuf_utils", | 711 ":audioproc_protobuf_utils", |
| 702 ":audioproc_test_utils", | 712 ":audioproc_test_utils", |
| 713 "../../base:protobuf_utils", |
| 703 "../../base:rtc_base_approved", | 714 "../../base:rtc_base_approved", |
| 704 "../../common_audio:common_audio", | 715 "../../common_audio:common_audio", |
| 705 "../../system_wrappers", | 716 "../../system_wrappers", |
| 706 "../../system_wrappers:system_wrappers_default", | 717 "../../system_wrappers:system_wrappers_default", |
| 707 "../../test:test_support", | 718 "../../test:test_support", |
| 708 "//testing/gtest", | 719 "//testing/gtest", |
| 709 "//third_party/gflags:gflags", | 720 "//third_party/gflags:gflags", |
| 710 ] | 721 ] |
| 711 } # audioproc_f | 722 } # audioproc_f |
| 712 } | 723 } |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 | 819 |
| 809 rtc_static_library("audioproc_protobuf_utils") { | 820 rtc_static_library("audioproc_protobuf_utils") { |
| 810 sources = [ | 821 sources = [ |
| 811 "test/protobuf_utils.cc", | 822 "test/protobuf_utils.cc", |
| 812 "test/protobuf_utils.h", | 823 "test/protobuf_utils.h", |
| 813 ] | 824 ] |
| 814 | 825 |
| 815 deps = [ | 826 deps = [ |
| 816 ":audioproc_debug_proto", | 827 ":audioproc_debug_proto", |
| 817 "../..:webrtc_common", | 828 "../..:webrtc_common", |
| 829 "../../base:protobuf_utils", |
| 818 "../../base:rtc_base_approved", | 830 "../../base:rtc_base_approved", |
| 819 ] | 831 ] |
| 820 } | 832 } |
| 821 } | 833 } |
| 822 } | 834 } |
| OLD | NEW |