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 22 matching lines...) Expand all Loading... |
33 "aec/echo_cancellation.h", | 33 "aec/echo_cancellation.h", |
34 "aecm/aecm_core.cc", | 34 "aecm/aecm_core.cc", |
35 "aecm/aecm_core.h", | 35 "aecm/aecm_core.h", |
36 "aecm/echo_control_mobile.cc", | 36 "aecm/echo_control_mobile.cc", |
37 "aecm/echo_control_mobile.h", | 37 "aecm/echo_control_mobile.h", |
38 "agc/agc.cc", | 38 "agc/agc.cc", |
39 "agc/agc.h", | 39 "agc/agc.h", |
40 "agc/agc_manager_direct.cc", | 40 "agc/agc_manager_direct.cc", |
41 "agc/agc_manager_direct.h", | 41 "agc/agc_manager_direct.h", |
42 "agc/gain_map_internal.h", | 42 "agc/gain_map_internal.h", |
43 "agc/histogram.cc", | |
44 "agc/histogram.h", | |
45 "agc/legacy/analog_agc.c", | 43 "agc/legacy/analog_agc.c", |
46 "agc/legacy/analog_agc.h", | 44 "agc/legacy/analog_agc.h", |
47 "agc/legacy/digital_agc.c", | 45 "agc/legacy/digital_agc.c", |
48 "agc/legacy/digital_agc.h", | 46 "agc/legacy/digital_agc.h", |
49 "agc/legacy/gain_control.h", | 47 "agc/legacy/gain_control.h", |
| 48 "agc/loudness_histogram.cc", |
| 49 "agc/loudness_histogram.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", | 58 "beamformer/beamformer.h", |
59 "beamformer/complex_matrix.h", | 59 "beamformer/complex_matrix.h", |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 "../../common_audio", | 288 "../../common_audio", |
289 ] | 289 ] |
290 | 290 |
291 if (aec_debug_dump) { | 291 if (aec_debug_dump) { |
292 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] | 292 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] |
293 } else { | 293 } else { |
294 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] | 294 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] |
295 } | 295 } |
296 } | 296 } |
297 } | 297 } |
OLD | NEW |