OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 17 matching lines...) Expand all Loading... |
28 'dependencies': [ | 28 'dependencies': [ |
29 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | 29 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
30 '<(webrtc_root)/common.gyp:webrtc_common', | 30 '<(webrtc_root)/common.gyp:webrtc_common', |
31 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 31 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
32 '<(webrtc_root)/modules/modules.gyp:isac', | 32 '<(webrtc_root)/modules/modules.gyp:isac', |
33 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 33 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
34 ], | 34 ], |
35 'sources': [ | 35 'sources': [ |
36 'aec/aec_core.cc', | 36 'aec/aec_core.cc', |
37 'aec/aec_core.h', | 37 'aec/aec_core.h', |
38 'aec/aec_core_internal.h', | 38 'aec/aec_core_optimized_methods.h', |
39 'aec/aec_rdft.cc', | 39 'aec/aec_rdft.cc', |
40 'aec/aec_rdft.h', | 40 'aec/aec_rdft.h', |
41 'aec/aec_resampler.cc', | 41 'aec/aec_resampler.cc', |
42 'aec/aec_resampler.h', | 42 'aec/aec_resampler.h', |
43 'aec/echo_cancellation.cc', | 43 'aec/echo_cancellation.cc', |
44 'aec/echo_cancellation.h', | 44 'aec/echo_cancellation.h', |
45 'aecm/aecm_core.cc', | 45 'aecm/aecm_core.cc', |
46 'aecm/aecm_core.h', | 46 'aecm/aecm_core.h', |
47 'aecm/echo_control_mobile.cc', | 47 'aecm/echo_control_mobile.cc', |
48 'aecm/echo_control_mobile.h', | 48 'aecm/echo_control_mobile.h', |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], | 284 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], |
285 }], | 285 }], |
286 ['aec_debug_dump==0', { | 286 ['aec_debug_dump==0', { |
287 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], | 287 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], |
288 }], | 288 }], |
289 ], | 289 ], |
290 }], | 290 }], |
291 }], | 291 }], |
292 ], | 292 ], |
293 } | 293 } |
OLD | NEW |