| 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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 # Disables the usual mode where we trust the reported system delay | 22 # Disables the usual mode where we trust the reported system delay |
| 23 # values the AEC receives. The corresponding define is set appropriately | 23 # values the AEC receives. The corresponding define is set appropriately |
| 24 # in the code, but it can be force-enabled here for testing. | 24 # in the code, but it can be force-enabled here for testing. |
| 25 'aec_untrusted_delay_for_testing%': 0, | 25 'aec_untrusted_delay_for_testing%': 0, |
| 26 }, | 26 }, |
| 27 'dependencies': [ | 27 'dependencies': [ |
| 28 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | 28 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 29 '<(webrtc_root)/common.gyp:webrtc_common', | 29 '<(webrtc_root)/common.gyp:webrtc_common', |
| 30 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 30 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 31 '<(webrtc_root)/modules/modules.gyp:iSAC', | 31 '<(webrtc_root)/modules/modules.gyp:isac', |
| 32 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 32 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
| 33 ], | 33 ], |
| 34 'sources': [ | 34 'sources': [ |
| 35 'aec/aec_core.c', | 35 'aec/aec_core.c', |
| 36 'aec/aec_core.h', | 36 'aec/aec_core.h', |
| 37 'aec/aec_core_internal.h', | 37 'aec/aec_core_internal.h', |
| 38 'aec/aec_rdft.c', | 38 'aec/aec_rdft.c', |
| 39 'aec/aec_rdft.h', | 39 'aec/aec_rdft.h', |
| 40 'aec/aec_resampler.c', | 40 'aec/aec_resampler.c', |
| 41 'aec/aec_resampler.h', | 41 'aec/aec_resampler.h', |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 'cflags!': [ | 265 'cflags!': [ |
| 266 '-flto', | 266 '-flto', |
| 267 '-ffat-lto-objects', | 267 '-ffat-lto-objects', |
| 268 ], | 268 ], |
| 269 }], | 269 }], |
| 270 ], | 270 ], |
| 271 }], | 271 }], |
| 272 }], | 272 }], |
| 273 ], | 273 ], |
| 274 } | 274 } |
| OLD | NEW |