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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 "intelligibility/intelligibility_enhancer.h", | 79 "intelligibility/intelligibility_enhancer.h", |
80 "intelligibility/intelligibility_utils.cc", | 80 "intelligibility/intelligibility_utils.cc", |
81 "intelligibility/intelligibility_utils.h", | 81 "intelligibility/intelligibility_utils.h", |
82 "level_estimator_impl.cc", | 82 "level_estimator_impl.cc", |
83 "level_estimator_impl.h", | 83 "level_estimator_impl.h", |
84 "logging/aec_logging.h", | 84 "logging/aec_logging.h", |
85 "logging/aec_logging_file_handling.cc", | 85 "logging/aec_logging_file_handling.cc", |
86 "logging/aec_logging_file_handling.h", | 86 "logging/aec_logging_file_handling.h", |
87 "noise_suppression_impl.cc", | 87 "noise_suppression_impl.cc", |
88 "noise_suppression_impl.h", | 88 "noise_suppression_impl.h", |
89 "processing_component.cc", | 89 "render_queue_item_verifier.h", |
90 "processing_component.h", | |
91 "rms_level.cc", | 90 "rms_level.cc", |
92 "rms_level.h", | 91 "rms_level.h", |
93 "splitting_filter.cc", | 92 "splitting_filter.cc", |
94 "splitting_filter.h", | 93 "splitting_filter.h", |
95 "three_band_filter_bank.cc", | 94 "three_band_filter_bank.cc", |
96 "three_band_filter_bank.h", | 95 "three_band_filter_bank.h", |
97 "transient/common.h", | 96 "transient/common.h", |
98 "transient/daubechies_8_wavelet_coeffs.h", | 97 "transient/daubechies_8_wavelet_coeffs.h", |
99 "transient/dyadic_decimator.h", | 98 "transient/dyadic_decimator.h", |
100 "transient/moving_moments.cc", | 99 "transient/moving_moments.cc", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 } | 278 } |
280 | 279 |
281 configs += [ "../..:common_config" ] | 280 configs += [ "../..:common_config" ] |
282 public_configs = [ "../..:common_inherited_config" ] | 281 public_configs = [ "../..:common_inherited_config" ] |
283 | 282 |
284 deps = [ | 283 deps = [ |
285 "../../common_audio", | 284 "../../common_audio", |
286 ] | 285 ] |
287 } | 286 } |
288 } | 287 } |
OLD | NEW |