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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "gain_control_impl.h", | 70 "gain_control_impl.h", |
71 "high_pass_filter_impl.cc", | 71 "high_pass_filter_impl.cc", |
72 "high_pass_filter_impl.h", | 72 "high_pass_filter_impl.h", |
73 "include/audio_processing.h", | 73 "include/audio_processing.h", |
74 "intelligibility/intelligibility_enhancer.cc", | 74 "intelligibility/intelligibility_enhancer.cc", |
75 "intelligibility/intelligibility_enhancer.h", | 75 "intelligibility/intelligibility_enhancer.h", |
76 "intelligibility/intelligibility_utils.cc", | 76 "intelligibility/intelligibility_utils.cc", |
77 "intelligibility/intelligibility_utils.h", | 77 "intelligibility/intelligibility_utils.h", |
78 "level_estimator_impl.cc", | 78 "level_estimator_impl.cc", |
79 "level_estimator_impl.h", | 79 "level_estimator_impl.h", |
| 80 "logging/aec_logging.h", |
| 81 "logging/aec_logging_file_handling.cc", |
| 82 "logging/aec_logging_file_handling.h", |
80 "noise_suppression_impl.cc", | 83 "noise_suppression_impl.cc", |
81 "noise_suppression_impl.h", | 84 "noise_suppression_impl.h", |
82 "processing_component.cc", | 85 "processing_component.cc", |
83 "processing_component.h", | 86 "processing_component.h", |
84 "rms_level.cc", | 87 "rms_level.cc", |
85 "rms_level.h", | 88 "rms_level.h", |
86 "splitting_filter.cc", | 89 "splitting_filter.cc", |
87 "splitting_filter.h", | 90 "splitting_filter.h", |
88 "three_band_filter_bank.cc", | 91 "three_band_filter_bank.cc", |
89 "three_band_filter_bank.h", | 92 "three_band_filter_bank.h", |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 } | 274 } |
272 | 275 |
273 configs += [ "../..:common_config" ] | 276 configs += [ "../..:common_config" ] |
274 public_configs = [ "../..:common_inherited_config" ] | 277 public_configs = [ "../..:common_inherited_config" ] |
275 | 278 |
276 deps = [ | 279 deps = [ |
277 "../../common_audio", | 280 "../../common_audio", |
278 ] | 281 ] |
279 } | 282 } |
280 } | 283 } |
OLD | NEW |