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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 "noise_suppression_impl.cc", | 80 "noise_suppression_impl.cc", |
81 "noise_suppression_impl.h", | 81 "noise_suppression_impl.h", |
82 "processing_component.cc", | 82 "processing_component.cc", |
83 "processing_component.h", | 83 "processing_component.h", |
| 84 "repetition_detector.cc", |
| 85 "repetition_detector.h", |
84 "rms_level.cc", | 86 "rms_level.cc", |
85 "rms_level.h", | 87 "rms_level.h", |
86 "splitting_filter.cc", | 88 "splitting_filter.cc", |
87 "splitting_filter.h", | 89 "splitting_filter.h", |
88 "three_band_filter_bank.cc", | 90 "three_band_filter_bank.cc", |
89 "three_band_filter_bank.h", | 91 "three_band_filter_bank.h", |
90 "transient/common.h", | 92 "transient/common.h", |
91 "transient/daubechies_8_wavelet_coeffs.h", | 93 "transient/daubechies_8_wavelet_coeffs.h", |
92 "transient/dyadic_decimator.h", | 94 "transient/dyadic_decimator.h", |
93 "transient/moving_moments.cc", | 95 "transient/moving_moments.cc", |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 } | 273 } |
272 | 274 |
273 configs += [ "../..:common_config" ] | 275 configs += [ "../..:common_config" ] |
274 public_configs = [ "../..:common_inherited_config" ] | 276 public_configs = [ "../..:common_inherited_config" ] |
275 | 277 |
276 deps = [ | 278 deps = [ |
277 "../../common_audio", | 279 "../../common_audio", |
278 ] | 280 ] |
279 } | 281 } |
280 } | 282 } |
OLD | NEW |