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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "aecm/echo_control_mobile.h", | 101 "aecm/echo_control_mobile.h", |
102 "agc/agc.cc", | 102 "agc/agc.cc", |
103 "agc/agc.h", | 103 "agc/agc.h", |
104 "agc/agc_manager_direct.cc", | 104 "agc/agc_manager_direct.cc", |
105 "agc/agc_manager_direct.h", | 105 "agc/agc_manager_direct.h", |
106 "agc/gain_map_internal.h", | 106 "agc/gain_map_internal.h", |
107 "agc/loudness_histogram.cc", | 107 "agc/loudness_histogram.cc", |
108 "agc/loudness_histogram.h", | 108 "agc/loudness_histogram.h", |
109 "agc/utility.cc", | 109 "agc/utility.cc", |
110 "agc/utility.h", | 110 "agc/utility.h", |
| 111 "agc2/gain_controller2.cc", |
| 112 "agc2/gain_controller2.h", |
111 "audio_buffer.cc", | 113 "audio_buffer.cc", |
112 "audio_buffer.h", | 114 "audio_buffer.h", |
113 "audio_processing_impl.cc", | 115 "audio_processing_impl.cc", |
114 "audio_processing_impl.h", | 116 "audio_processing_impl.h", |
115 "beamformer/array_util.cc", | 117 "beamformer/array_util.cc", |
116 "beamformer/array_util.h", | 118 "beamformer/array_util.h", |
117 "beamformer/complex_matrix.h", | 119 "beamformer/complex_matrix.h", |
118 "beamformer/covariance_matrix_generator.cc", | 120 "beamformer/covariance_matrix_generator.cc", |
119 "beamformer/covariance_matrix_generator.h", | 121 "beamformer/covariance_matrix_generator.h", |
120 "beamformer/matrix.h", | 122 "beamformer/matrix.h", |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 "aec3/render_delay_buffer_unittest.cc", | 607 "aec3/render_delay_buffer_unittest.cc", |
606 "aec3/render_delay_controller_metrics_unittest.cc", | 608 "aec3/render_delay_controller_metrics_unittest.cc", |
607 "aec3/render_delay_controller_unittest.cc", | 609 "aec3/render_delay_controller_unittest.cc", |
608 "aec3/render_signal_analyzer_unittest.cc", | 610 "aec3/render_signal_analyzer_unittest.cc", |
609 "aec3/residual_echo_estimator_unittest.cc", | 611 "aec3/residual_echo_estimator_unittest.cc", |
610 "aec3/shadow_filter_update_gain_unittest.cc", | 612 "aec3/shadow_filter_update_gain_unittest.cc", |
611 "aec3/subtractor_unittest.cc", | 613 "aec3/subtractor_unittest.cc", |
612 "aec3/suppression_filter_unittest.cc", | 614 "aec3/suppression_filter_unittest.cc", |
613 "aec3/suppression_gain_unittest.cc", | 615 "aec3/suppression_gain_unittest.cc", |
614 "aec3/vector_math_unittest.cc", | 616 "aec3/vector_math_unittest.cc", |
| 617 "agc2/gain_controller2_unittest.cc", |
615 "audio_processing_impl_locking_unittest.cc", | 618 "audio_processing_impl_locking_unittest.cc", |
616 "audio_processing_impl_unittest.cc", | 619 "audio_processing_impl_unittest.cc", |
617 "audio_processing_unittest.cc", | 620 "audio_processing_unittest.cc", |
618 "beamformer/nonlinear_beamformer_unittest.cc", | 621 "beamformer/nonlinear_beamformer_unittest.cc", |
619 "echo_cancellation_bit_exact_unittest.cc", | 622 "echo_cancellation_bit_exact_unittest.cc", |
620 "echo_control_mobile_unittest.cc", | 623 "echo_control_mobile_unittest.cc", |
621 "echo_detector/circular_buffer_unittest.cc", | 624 "echo_detector/circular_buffer_unittest.cc", |
622 "echo_detector/mean_variance_estimator_unittest.cc", | 625 "echo_detector/mean_variance_estimator_unittest.cc", |
623 "echo_detector/moving_max_unittest.cc", | 626 "echo_detector/moving_max_unittest.cc", |
624 "echo_detector/normalized_covariance_estimator_unittest.cc", | 627 "echo_detector/normalized_covariance_estimator_unittest.cc", |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
841 | 844 |
842 deps = [ | 845 deps = [ |
843 ":audioproc_debug_proto", | 846 ":audioproc_debug_proto", |
844 "../..:webrtc_common", | 847 "../..:webrtc_common", |
845 "../../base:protobuf_utils", | 848 "../../base:protobuf_utils", |
846 "../../base:rtc_base_approved", | 849 "../../base:rtc_base_approved", |
847 ] | 850 ] |
848 } | 851 } |
849 } | 852 } |
850 } | 853 } |
OLD | NEW |