| 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 "gain_control_impl.h", | 74 "gain_control_impl.h", |
| 75 "high_pass_filter_impl.cc", | 75 "high_pass_filter_impl.cc", |
| 76 "high_pass_filter_impl.h", | 76 "high_pass_filter_impl.h", |
| 77 "include/audio_processing.h", | 77 "include/audio_processing.h", |
| 78 "intelligibility/intelligibility_enhancer.cc", | 78 "intelligibility/intelligibility_enhancer.cc", |
| 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/apm_data_dumper.cc", |
| 85 "logging/aec_logging_file_handling.cc", | 85 "logging/apm_data_dumper.h", |
| 86 "logging/aec_logging_file_handling.h", | |
| 87 "noise_suppression_impl.cc", | 86 "noise_suppression_impl.cc", |
| 88 "noise_suppression_impl.h", | 87 "noise_suppression_impl.h", |
| 89 "render_queue_item_verifier.h", | 88 "render_queue_item_verifier.h", |
| 90 "rms_level.cc", | 89 "rms_level.cc", |
| 91 "rms_level.h", | 90 "rms_level.h", |
| 92 "splitting_filter.cc", | 91 "splitting_filter.cc", |
| 93 "splitting_filter.h", | 92 "splitting_filter.h", |
| 94 "three_band_filter_bank.cc", | 93 "three_band_filter_bank.cc", |
| 95 "three_band_filter_bank.h", | 94 "three_band_filter_bank.h", |
| 96 "transient/common.h", | 95 "transient/common.h", |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 } | 279 } |
| 281 | 280 |
| 282 configs += [ "../..:common_config" ] | 281 configs += [ "../..:common_config" ] |
| 283 public_configs = [ "../..:common_inherited_config" ] | 282 public_configs = [ "../..:common_inherited_config" ] |
| 284 | 283 |
| 285 deps = [ | 284 deps = [ |
| 286 "../../common_audio", | 285 "../../common_audio", |
| 287 ] | 286 ] |
| 288 } | 287 } |
| 289 } | 288 } |
| OLD | NEW |