Chromium Code Reviews| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 81 "logging/aec_logging_file_handling.cc", | 81 "logging/aec_logging_file_handling.cc", |
| 82 "logging/aec_logging_file_handling.h", | 82 "logging/aec_logging_file_handling.h", |
| 83 "noise_suppression_impl.cc", | 83 "noise_suppression_impl.cc", |
| 84 "noise_suppression_impl.h", | 84 "noise_suppression_impl.h", |
| 85 "processing_component.cc", | 85 "processing_component.cc", |
| 86 "processing_component.h", | 86 "processing_component.h", |
| 87 "rms_level.cc", | 87 "rms_level.cc", |
| 88 "rms_level.h", | 88 "rms_level.h", |
| 89 "splitting_filter.cc", | 89 "splitting_filter.cc", |
| 90 "splitting_filter.h", | 90 "splitting_filter.h", |
| 91 "swapped_nonblocking_queue.h", | |
|
hlundin-webrtc
2015/10/13 06:37:57
I wonder if this should be sitting in common_audio
peah-webrtc
2015/10/13 11:56:11
I think that makes sense! I will move it, but if a
kwiberg-webrtc
2015/10/13 12:09:07
It might be generic enough to merit a place in web
the sun
2015/10/13 12:34:26
Yes, in time. I think first we let it get some mil
peah-webrtc
2015/10/26 08:56:56
Acknowledged.
| |
| 91 "three_band_filter_bank.cc", | 92 "three_band_filter_bank.cc", |
| 92 "three_band_filter_bank.h", | 93 "three_band_filter_bank.h", |
| 93 "transient/common.h", | 94 "transient/common.h", |
| 94 "transient/daubechies_8_wavelet_coeffs.h", | 95 "transient/daubechies_8_wavelet_coeffs.h", |
| 95 "transient/dyadic_decimator.h", | 96 "transient/dyadic_decimator.h", |
| 96 "transient/moving_moments.cc", | 97 "transient/moving_moments.cc", |
| 97 "transient/moving_moments.h", | 98 "transient/moving_moments.h", |
| 98 "transient/transient_detector.cc", | 99 "transient/transient_detector.cc", |
| 99 "transient/transient_detector.h", | 100 "transient/transient_detector.h", |
| 100 "transient/transient_suppressor.cc", | 101 "transient/transient_suppressor.cc", |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 275 } | 276 } |
| 276 | 277 |
| 277 configs += [ "../..:common_config" ] | 278 configs += [ "../..:common_config" ] |
| 278 public_configs = [ "../..:common_inherited_config" ] | 279 public_configs = [ "../..:common_inherited_config" ] |
| 279 | 280 |
| 280 deps = [ | 281 deps = [ |
| 281 "../../common_audio", | 282 "../../common_audio", |
| 282 ] | 283 ] |
| 283 } | 284 } |
| 284 } | 285 } |
| OLD | NEW |