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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "agc/legacy/digital_agc.h", | 48 "agc/legacy/digital_agc.h", |
49 "agc/legacy/gain_control.h", | 49 "agc/legacy/gain_control.h", |
50 "agc/utility.cc", | 50 "agc/utility.cc", |
51 "agc/utility.h", | 51 "agc/utility.h", |
52 "audio_buffer.cc", | 52 "audio_buffer.cc", |
53 "audio_buffer.h", | 53 "audio_buffer.h", |
54 "audio_processing_impl.cc", | 54 "audio_processing_impl.cc", |
55 "audio_processing_impl.h", | 55 "audio_processing_impl.h", |
56 "beamformer/array_util.cc", | 56 "beamformer/array_util.cc", |
57 "beamformer/array_util.h", | 57 "beamformer/array_util.h", |
58 "beamformer/beamformer.h", | |
59 "beamformer/complex_matrix.h", | 58 "beamformer/complex_matrix.h", |
60 "beamformer/covariance_matrix_generator.cc", | 59 "beamformer/covariance_matrix_generator.cc", |
61 "beamformer/covariance_matrix_generator.h", | 60 "beamformer/covariance_matrix_generator.h", |
62 "beamformer/matrix.h", | 61 "beamformer/matrix.h", |
63 "beamformer/nonlinear_beamformer.cc", | 62 "beamformer/nonlinear_beamformer.cc", |
64 "beamformer/nonlinear_beamformer.h", | 63 "beamformer/nonlinear_beamformer.h", |
65 "common.h", | 64 "common.h", |
66 "echo_cancellation_impl.cc", | 65 "echo_cancellation_impl.cc", |
67 "echo_cancellation_impl.h", | 66 "echo_cancellation_impl.h", |
68 "echo_control_mobile_impl.cc", | 67 "echo_control_mobile_impl.cc", |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 "../../common_audio", | 291 "../../common_audio", |
293 ] | 292 ] |
294 | 293 |
295 if (aec_debug_dump) { | 294 if (aec_debug_dump) { |
296 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] | 295 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] |
297 } else { | 296 } else { |
298 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] | 297 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] |
299 } | 298 } |
300 } | 299 } |
301 } | 300 } |
OLD | NEW |