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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 "beamformer/nonlinear_beamformer.h", | 64 "beamformer/nonlinear_beamformer.h", |
65 "common.h", | 65 "common.h", |
66 "echo_cancellation_impl.cc", | 66 "echo_cancellation_impl.cc", |
67 "echo_cancellation_impl.h", | 67 "echo_cancellation_impl.h", |
68 "echo_control_mobile_impl.cc", | 68 "echo_control_mobile_impl.cc", |
69 "echo_control_mobile_impl.h", | 69 "echo_control_mobile_impl.h", |
70 "echo_detector/circular_buffer.cc", | 70 "echo_detector/circular_buffer.cc", |
71 "echo_detector/circular_buffer.h", | 71 "echo_detector/circular_buffer.h", |
72 "echo_detector/mean_variance_estimator.cc", | 72 "echo_detector/mean_variance_estimator.cc", |
73 "echo_detector/mean_variance_estimator.h", | 73 "echo_detector/mean_variance_estimator.h", |
| 74 "echo_detector/moving_max.cc", |
| 75 "echo_detector/moving_max.h", |
74 "echo_detector/normalized_covariance_estimator.cc", | 76 "echo_detector/normalized_covariance_estimator.cc", |
75 "echo_detector/normalized_covariance_estimator.h", | 77 "echo_detector/normalized_covariance_estimator.h", |
76 "gain_control_for_experimental_agc.cc", | 78 "gain_control_for_experimental_agc.cc", |
77 "gain_control_for_experimental_agc.h", | 79 "gain_control_for_experimental_agc.h", |
78 "gain_control_impl.cc", | 80 "gain_control_impl.cc", |
79 "gain_control_impl.h", | 81 "gain_control_impl.h", |
80 "include/audio_processing.cc", | 82 "include/audio_processing.cc", |
81 "include/audio_processing.h", | 83 "include/audio_processing.h", |
82 "include/config.cc", | 84 "include/config.cc", |
83 "include/config.h", | 85 "include/config.h", |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 ] | 590 ] |
589 | 591 |
590 deps = [ | 592 deps = [ |
591 ":audioproc_debug_proto", | 593 ":audioproc_debug_proto", |
592 "../..:webrtc_common", | 594 "../..:webrtc_common", |
593 "../../base:rtc_base_approved", | 595 "../../base:rtc_base_approved", |
594 ] | 596 ] |
595 } | 597 } |
596 } | 598 } |
597 } | 599 } |
OLD | NEW |