| 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 14 matching lines...) Expand all Loading... |
| 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.cc', |
| 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', |
| 42 'aec/echo_cancellation.c', | 42 'aec/echo_cancellation.cc', |
| 43 'aec/echo_cancellation_internal.h', | 43 'aec/echo_cancellation_internal.h', |
| 44 'aec/echo_cancellation.h', | 44 'aec/echo_cancellation.h', |
| 45 'aecm/aecm_core.c', | 45 'aecm/aecm_core.c', |
| 46 'aecm/aecm_core.h', | 46 'aecm/aecm_core.h', |
| 47 'aecm/echo_control_mobile.c', | 47 'aecm/echo_control_mobile.c', |
| 48 'aecm/echo_control_mobile.h', | 48 'aecm/echo_control_mobile.h', |
| 49 'agc/agc.cc', | 49 'agc/agc.cc', |
| 50 'agc/agc.h', | 50 'agc/agc.h', |
| 51 'agc/agc_manager_direct.cc', | 51 'agc/agc_manager_direct.cc', |
| 52 'agc/agc_manager_direct.h', | 52 'agc/agc_manager_direct.h', |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 ['build_with_neon==1', { | 198 ['build_with_neon==1', { |
| 199 'dependencies': ['audio_processing_neon',], | 199 'dependencies': ['audio_processing_neon',], |
| 200 }], | 200 }], |
| 201 ['target_arch=="mipsel" and mips_arch_variant!="r6"', { | 201 ['target_arch=="mipsel" and mips_arch_variant!="r6"', { |
| 202 'sources': [ | 202 'sources': [ |
| 203 'aecm/aecm_core_mips.c', | 203 'aecm/aecm_core_mips.c', |
| 204 ], | 204 ], |
| 205 'conditions': [ | 205 'conditions': [ |
| 206 ['mips_float_abi=="hard"', { | 206 ['mips_float_abi=="hard"', { |
| 207 'sources': [ | 207 'sources': [ |
| 208 'aec/aec_core_mips.c', | 208 'aec/aec_core_mips.cc', |
| 209 'aec/aec_rdft_mips.c', | 209 'aec/aec_rdft_mips.c', |
| 210 ], | 210 ], |
| 211 }], | 211 }], |
| 212 ], | 212 ], |
| 213 }, { | 213 }, { |
| 214 'sources': [ | 214 'sources': [ |
| 215 'aecm/aecm_core_c.c', | 215 'aecm/aecm_core_c.c', |
| 216 ], | 216 ], |
| 217 }], | 217 }], |
| 218 ], | 218 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 237 'includes': ['../../build/protoc.gypi',], | 237 'includes': ['../../build/protoc.gypi',], |
| 238 }, | 238 }, |
| 239 ], | 239 ], |
| 240 }], | 240 }], |
| 241 ['target_arch=="ia32" or target_arch=="x64"', { | 241 ['target_arch=="ia32" or target_arch=="x64"', { |
| 242 'targets': [ | 242 'targets': [ |
| 243 { | 243 { |
| 244 'target_name': 'audio_processing_sse2', | 244 'target_name': 'audio_processing_sse2', |
| 245 'type': 'static_library', | 245 'type': 'static_library', |
| 246 'sources': [ | 246 'sources': [ |
| 247 'aec/aec_core_sse2.c', | 247 'aec/aec_core_sse2.cc', |
| 248 'aec/aec_rdft_sse2.c', | 248 'aec/aec_rdft_sse2.c', |
| 249 ], | 249 ], |
| 250 'conditions': [ | 250 'conditions': [ |
| 251 ['os_posix==1', { | 251 ['os_posix==1', { |
| 252 'cflags': [ '-msse2', ], | 252 'cflags': [ '-msse2', ], |
| 253 'xcode_settings': { | 253 'xcode_settings': { |
| 254 'OTHER_CFLAGS': [ '-msse2', ], | 254 'OTHER_CFLAGS': [ '-msse2', ], |
| 255 }, | 255 }, |
| 256 }], | 256 }], |
| 257 ], | 257 ], |
| 258 }, | 258 }, |
| 259 ], | 259 ], |
| 260 }], | 260 }], |
| 261 ['build_with_neon==1', { | 261 ['build_with_neon==1', { |
| 262 'targets': [{ | 262 'targets': [{ |
| 263 'target_name': 'audio_processing_neon', | 263 'target_name': 'audio_processing_neon', |
| 264 'type': 'static_library', | 264 'type': 'static_library', |
| 265 'includes': ['../../build/arm_neon.gypi',], | 265 'includes': ['../../build/arm_neon.gypi',], |
| 266 'dependencies': [ | 266 'dependencies': [ |
| 267 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 267 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 268 ], | 268 ], |
| 269 'sources': [ | 269 'sources': [ |
| 270 'aec/aec_core_neon.c', | 270 'aec/aec_core_neon.cc', |
| 271 'aec/aec_rdft_neon.c', | 271 'aec/aec_rdft_neon.c', |
| 272 'aecm/aecm_core_neon.c', | 272 'aecm/aecm_core_neon.c', |
| 273 'ns/nsx_core_neon.c', | 273 'ns/nsx_core_neon.c', |
| 274 ], | 274 ], |
| 275 }], | 275 }], |
| 276 }], | 276 }], |
| 277 ], | 277 ], |
| 278 } | 278 } |
| OLD | NEW |