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 13 matching lines...) Expand all Loading... |
24 sources = [ | 24 sources = [ |
25 "aec/aec_core.cc", | 25 "aec/aec_core.cc", |
26 "aec/aec_core.h", | 26 "aec/aec_core.h", |
27 "aec/aec_core_internal.h", | 27 "aec/aec_core_internal.h", |
28 "aec/aec_rdft.cc", | 28 "aec/aec_rdft.cc", |
29 "aec/aec_rdft.h", | 29 "aec/aec_rdft.h", |
30 "aec/aec_resampler.cc", | 30 "aec/aec_resampler.cc", |
31 "aec/aec_resampler.h", | 31 "aec/aec_resampler.h", |
32 "aec/echo_cancellation.cc", | 32 "aec/echo_cancellation.cc", |
33 "aec/echo_cancellation.h", | 33 "aec/echo_cancellation.h", |
34 "aec/echo_cancellation_internal.h", | |
35 "aecm/aecm_core.cc", | 34 "aecm/aecm_core.cc", |
36 "aecm/aecm_core.h", | 35 "aecm/aecm_core.h", |
37 "aecm/echo_control_mobile.cc", | 36 "aecm/echo_control_mobile.cc", |
38 "aecm/echo_control_mobile.h", | 37 "aecm/echo_control_mobile.h", |
39 "agc/agc.cc", | 38 "agc/agc.cc", |
40 "agc/agc.h", | 39 "agc/agc.h", |
41 "agc/agc_manager_direct.cc", | 40 "agc/agc_manager_direct.cc", |
42 "agc/agc_manager_direct.h", | 41 "agc/agc_manager_direct.h", |
43 "agc/gain_map_internal.h", | 42 "agc/gain_map_internal.h", |
44 "agc/histogram.cc", | 43 "agc/histogram.cc", |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 "../../common_audio", | 292 "../../common_audio", |
294 ] | 293 ] |
295 | 294 |
296 if (aec_debug_dump) { | 295 if (aec_debug_dump) { |
297 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] | 296 defines = [ "WEBRTC_AEC_DEBUG_DUMP=1" ] |
298 } else { | 297 } else { |
299 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] | 298 defines = [ "WEBRTC_AEC_DEBUG_DUMP=0" ] |
300 } | 299 } |
301 } | 300 } |
302 } | 301 } |
OLD | NEW |