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 43 matching lines...) Loading... |
54 "beamformer/covariance_matrix_generator.cc", | 54 "beamformer/covariance_matrix_generator.cc", |
55 "beamformer/covariance_matrix_generator.h", | 55 "beamformer/covariance_matrix_generator.h", |
56 "beamformer/matrix.h", | 56 "beamformer/matrix.h", |
57 "beamformer/nonlinear_beamformer.cc", | 57 "beamformer/nonlinear_beamformer.cc", |
58 "beamformer/nonlinear_beamformer.h", | 58 "beamformer/nonlinear_beamformer.h", |
59 "common.h", | 59 "common.h", |
60 "echo_cancellation_impl.cc", | 60 "echo_cancellation_impl.cc", |
61 "echo_cancellation_impl.h", | 61 "echo_cancellation_impl.h", |
62 "echo_control_mobile_impl.cc", | 62 "echo_control_mobile_impl.cc", |
63 "echo_control_mobile_impl.h", | 63 "echo_control_mobile_impl.h", |
| 64 "echo_detector/circular_buffer.cc", |
| 65 "echo_detector/circular_buffer.h", |
| 66 "echo_detector/mean_variance_estimator.cc", |
| 67 "echo_detector/mean_variance_estimator.h", |
| 68 "echo_detector/normalized_covariance_estimator.cc", |
| 69 "echo_detector/normalized_covariance_estimator.h", |
64 "gain_control_for_experimental_agc.cc", | 70 "gain_control_for_experimental_agc.cc", |
65 "gain_control_for_experimental_agc.h", | 71 "gain_control_for_experimental_agc.h", |
66 "gain_control_impl.cc", | 72 "gain_control_impl.cc", |
67 "gain_control_impl.h", | 73 "gain_control_impl.h", |
68 "high_pass_filter_impl.cc", | 74 "high_pass_filter_impl.cc", |
69 "high_pass_filter_impl.h", | 75 "high_pass_filter_impl.h", |
70 "include/audio_processing.cc", | 76 "include/audio_processing.cc", |
71 "include/audio_processing.h", | 77 "include/audio_processing.h", |
72 "include/config.cc", | 78 "include/config.cc", |
73 "include/config.h", | 79 "include/config.h", |
(...skipping 370 matching lines...) Loading... |
444 "test/protobuf_utils.cc", | 450 "test/protobuf_utils.cc", |
445 "test/protobuf_utils.h", | 451 "test/protobuf_utils.h", |
446 ] | 452 ] |
447 | 453 |
448 deps = [ | 454 deps = [ |
449 ":audioproc_debug_proto", | 455 ":audioproc_debug_proto", |
450 ] | 456 ] |
451 } | 457 } |
452 } | 458 } |
453 } | 459 } |
OLD | NEW |