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 23 matching lines...) Loading... |
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_internal.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_internal.h', | |
45 'aec/echo_cancellation.h', | 44 'aec/echo_cancellation.h', |
46 'aecm/aecm_core.cc', | 45 'aecm/aecm_core.cc', |
47 'aecm/aecm_core.h', | 46 'aecm/aecm_core.h', |
48 'aecm/echo_control_mobile.cc', | 47 'aecm/echo_control_mobile.cc', |
49 'aecm/echo_control_mobile.h', | 48 'aecm/echo_control_mobile.h', |
50 'agc/agc.cc', | 49 'agc/agc.cc', |
51 'agc/agc.h', | 50 'agc/agc.h', |
52 'agc/agc_manager_direct.cc', | 51 'agc/agc_manager_direct.cc', |
53 'agc/agc_manager_direct.h', | 52 'agc/agc_manager_direct.h', |
54 'agc/gain_map_internal.h', | 53 'agc/gain_map_internal.h', |
(...skipping 230 matching lines...) Loading... |
285 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], | 284 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',], |
286 }], | 285 }], |
287 ['aec_debug_dump==0', { | 286 ['aec_debug_dump==0', { |
288 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], | 287 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',], |
289 }], | 288 }], |
290 ], | 289 ], |
291 }], | 290 }], |
292 }], | 291 }], |
293 ], | 292 ], |
294 } | 293 } |
OLD | NEW |