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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 "aec3/residual_echo_estimator.h", | 87 "aec3/residual_echo_estimator.h", |
88 "aec3/shadow_filter_update_gain.cc", | 88 "aec3/shadow_filter_update_gain.cc", |
89 "aec3/shadow_filter_update_gain.h", | 89 "aec3/shadow_filter_update_gain.h", |
90 "aec3/subtractor.cc", | 90 "aec3/subtractor.cc", |
91 "aec3/subtractor.h", | 91 "aec3/subtractor.h", |
92 "aec3/subtractor_output.h", | 92 "aec3/subtractor_output.h", |
93 "aec3/suppression_filter.cc", | 93 "aec3/suppression_filter.cc", |
94 "aec3/suppression_filter.h", | 94 "aec3/suppression_filter.h", |
95 "aec3/suppression_gain.cc", | 95 "aec3/suppression_gain.cc", |
96 "aec3/suppression_gain.h", | 96 "aec3/suppression_gain.h", |
| 97 "aec3/vector_math.h", |
97 "aecm/aecm_core.cc", | 98 "aecm/aecm_core.cc", |
98 "aecm/aecm_core.h", | 99 "aecm/aecm_core.h", |
99 "aecm/echo_control_mobile.cc", | 100 "aecm/echo_control_mobile.cc", |
100 "aecm/echo_control_mobile.h", | 101 "aecm/echo_control_mobile.h", |
101 "agc/agc.cc", | 102 "agc/agc.cc", |
102 "agc/agc.h", | 103 "agc/agc.h", |
103 "agc/agc_manager_direct.cc", | 104 "agc/agc_manager_direct.cc", |
104 "agc/agc_manager_direct.h", | 105 "agc/agc_manager_direct.h", |
105 "agc/gain_map_internal.h", | 106 "agc/gain_map_internal.h", |
106 "agc/loudness_histogram.cc", | 107 "agc/loudness_histogram.cc", |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 "aec3/render_buffer_unittest.cc", | 595 "aec3/render_buffer_unittest.cc", |
595 "aec3/render_delay_buffer_unittest.cc", | 596 "aec3/render_delay_buffer_unittest.cc", |
596 "aec3/render_delay_controller_metrics_unittest.cc", | 597 "aec3/render_delay_controller_metrics_unittest.cc", |
597 "aec3/render_delay_controller_unittest.cc", | 598 "aec3/render_delay_controller_unittest.cc", |
598 "aec3/render_signal_analyzer_unittest.cc", | 599 "aec3/render_signal_analyzer_unittest.cc", |
599 "aec3/residual_echo_estimator_unittest.cc", | 600 "aec3/residual_echo_estimator_unittest.cc", |
600 "aec3/shadow_filter_update_gain_unittest.cc", | 601 "aec3/shadow_filter_update_gain_unittest.cc", |
601 "aec3/subtractor_unittest.cc", | 602 "aec3/subtractor_unittest.cc", |
602 "aec3/suppression_filter_unittest.cc", | 603 "aec3/suppression_filter_unittest.cc", |
603 "aec3/suppression_gain_unittest.cc", | 604 "aec3/suppression_gain_unittest.cc", |
| 605 "aec3/vector_math_unittest.cc", |
604 "audio_processing_impl_locking_unittest.cc", | 606 "audio_processing_impl_locking_unittest.cc", |
605 "audio_processing_impl_unittest.cc", | 607 "audio_processing_impl_unittest.cc", |
606 "audio_processing_unittest.cc", | 608 "audio_processing_unittest.cc", |
607 "beamformer/nonlinear_beamformer_unittest.cc", | 609 "beamformer/nonlinear_beamformer_unittest.cc", |
608 "echo_cancellation_bit_exact_unittest.cc", | 610 "echo_cancellation_bit_exact_unittest.cc", |
609 "echo_control_mobile_unittest.cc", | 611 "echo_control_mobile_unittest.cc", |
610 "echo_detector/circular_buffer_unittest.cc", | 612 "echo_detector/circular_buffer_unittest.cc", |
611 "echo_detector/mean_variance_estimator_unittest.cc", | 613 "echo_detector/mean_variance_estimator_unittest.cc", |
612 "echo_detector/moving_max_unittest.cc", | 614 "echo_detector/moving_max_unittest.cc", |
613 "echo_detector/normalized_covariance_estimator_unittest.cc", | 615 "echo_detector/normalized_covariance_estimator_unittest.cc", |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 | 823 |
822 deps = [ | 824 deps = [ |
823 ":audioproc_debug_proto", | 825 ":audioproc_debug_proto", |
824 "../..:webrtc_common", | 826 "../..:webrtc_common", |
825 "../../base:protobuf_utils", | 827 "../../base:protobuf_utils", |
826 "../../base:rtc_base_approved", | 828 "../../base:rtc_base_approved", |
827 ] | 829 ] |
828 } | 830 } |
829 } | 831 } |
830 } | 832 } |
OLD | NEW |