| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 "level_controller/saturating_gain_estimator.h", | 92 "level_controller/saturating_gain_estimator.h", |
| 93 "level_controller/signal_classifier.cc", | 93 "level_controller/signal_classifier.cc", |
| 94 "level_controller/signal_classifier.h", | 94 "level_controller/signal_classifier.h", |
| 95 "level_estimator_impl.cc", | 95 "level_estimator_impl.cc", |
| 96 "level_estimator_impl.h", | 96 "level_estimator_impl.h", |
| 97 "logging/apm_data_dumper.cc", | 97 "logging/apm_data_dumper.cc", |
| 98 "logging/apm_data_dumper.h", | 98 "logging/apm_data_dumper.h", |
| 99 "noise_suppression_impl.cc", | 99 "noise_suppression_impl.cc", |
| 100 "noise_suppression_impl.h", | 100 "noise_suppression_impl.h", |
| 101 "render_queue_item_verifier.h", | 101 "render_queue_item_verifier.h", |
| 102 "residual_echo_detector.cc", |
| 103 "residual_echo_detector.h", |
| 102 "rms_level.cc", | 104 "rms_level.cc", |
| 103 "rms_level.h", | 105 "rms_level.h", |
| 104 "splitting_filter.cc", | 106 "splitting_filter.cc", |
| 105 "splitting_filter.h", | 107 "splitting_filter.h", |
| 106 "three_band_filter_bank.cc", | 108 "three_band_filter_bank.cc", |
| 107 "three_band_filter_bank.h", | 109 "three_band_filter_bank.h", |
| 108 "transient/common.h", | 110 "transient/common.h", |
| 109 "transient/daubechies_8_wavelet_coeffs.h", | 111 "transient/daubechies_8_wavelet_coeffs.h", |
| 110 "transient/dyadic_decimator.h", | 112 "transient/dyadic_decimator.h", |
| 111 "transient/moving_moments.cc", | 113 "transient/moving_moments.cc", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "test/protobuf_utils.cc", | 444 "test/protobuf_utils.cc", |
| 443 "test/protobuf_utils.h", | 445 "test/protobuf_utils.h", |
| 444 ] | 446 ] |
| 445 | 447 |
| 446 deps = [ | 448 deps = [ |
| 447 ":audioproc_debug_proto", | 449 ":audioproc_debug_proto", |
| 448 ] | 450 ] |
| 449 } | 451 } |
| 450 } | 452 } |
| 451 } | 453 } |
| OLD | NEW |