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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "beamformer/covariance_matrix_generator.cc", | 61 "beamformer/covariance_matrix_generator.cc", |
62 "beamformer/covariance_matrix_generator.h", | 62 "beamformer/covariance_matrix_generator.h", |
63 "beamformer/matrix.h", | 63 "beamformer/matrix.h", |
64 "beamformer/nonlinear_beamformer.cc", | 64 "beamformer/nonlinear_beamformer.cc", |
65 "beamformer/nonlinear_beamformer.h", | 65 "beamformer/nonlinear_beamformer.h", |
66 "common.h", | 66 "common.h", |
67 "echo_cancellation_impl.cc", | 67 "echo_cancellation_impl.cc", |
68 "echo_cancellation_impl.h", | 68 "echo_cancellation_impl.h", |
69 "echo_control_mobile_impl.cc", | 69 "echo_control_mobile_impl.cc", |
70 "echo_control_mobile_impl.h", | 70 "echo_control_mobile_impl.h", |
| 71 "gain_control_for_experimental_agc.cc", |
| 72 "gain_control_for_experimental_agc.h", |
71 "gain_control_impl.cc", | 73 "gain_control_impl.cc", |
72 "gain_control_impl.h", | 74 "gain_control_impl.h", |
73 "high_pass_filter_impl.cc", | 75 "high_pass_filter_impl.cc", |
74 "high_pass_filter_impl.h", | 76 "high_pass_filter_impl.h", |
75 "include/audio_processing.h", | 77 "include/audio_processing.h", |
76 "intelligibility/intelligibility_enhancer.cc", | 78 "intelligibility/intelligibility_enhancer.cc", |
77 "intelligibility/intelligibility_enhancer.h", | 79 "intelligibility/intelligibility_enhancer.h", |
78 "intelligibility/intelligibility_utils.cc", | 80 "intelligibility/intelligibility_utils.cc", |
79 "intelligibility/intelligibility_utils.h", | 81 "intelligibility/intelligibility_utils.h", |
80 "level_estimator_impl.cc", | 82 "level_estimator_impl.cc", |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 } | 279 } |
278 | 280 |
279 configs += [ "../..:common_config" ] | 281 configs += [ "../..:common_config" ] |
280 public_configs = [ "../..:common_inherited_config" ] | 282 public_configs = [ "../..:common_inherited_config" ] |
281 | 283 |
282 deps = [ | 284 deps = [ |
283 "../../common_audio", | 285 "../../common_audio", |
284 ] | 286 ] |
285 } | 287 } |
286 } | 288 } |
OLD | NEW |