Chromium Code Reviews

Side by Side Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 1881153003: Moved the aec_rdft*.c files to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebase with latest master Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_rdft_sse2.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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...)
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.cc', 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.cc',
39 'aec/aec_rdft.h', 39 'aec/aec_rdft.h',
40 'aec/aec_resampler.cc', 40 'aec/aec_resampler.cc',
41 'aec/aec_resampler.h', 41 'aec/aec_resampler.h',
42 'aec/echo_cancellation.cc', 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.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 151 matching lines...)
200 'dependencies': ['audio_processing_neon',], 200 'dependencies': ['audio_processing_neon',],
201 }], 201 }],
202 ['target_arch=="mipsel" and mips_arch_variant!="r6"', { 202 ['target_arch=="mipsel" and mips_arch_variant!="r6"', {
203 'sources': [ 203 'sources': [
204 'aecm/aecm_core_mips.cc', 204 'aecm/aecm_core_mips.cc',
205 ], 205 ],
206 'conditions': [ 206 'conditions': [
207 ['mips_float_abi=="hard"', { 207 ['mips_float_abi=="hard"', {
208 'sources': [ 208 'sources': [
209 'aec/aec_core_mips.cc', 209 'aec/aec_core_mips.cc',
210 'aec/aec_rdft_mips.c', 210 'aec/aec_rdft_mips.cc',
211 ], 211 ],
212 }], 212 }],
213 ], 213 ],
214 }, { 214 }, {
215 'sources': [ 215 'sources': [
216 'aecm/aecm_core_c.cc', 216 'aecm/aecm_core_c.cc',
217 ], 217 ],
218 }], 218 }],
219 ], 219 ],
220 # TODO(jschuh): Bug 1348: fix size_t to int truncations. 220 # TODO(jschuh): Bug 1348: fix size_t to int truncations.
(...skipping 18 matching lines...)
239 }, 239 },
240 ], 240 ],
241 }], 241 }],
242 ['target_arch=="ia32" or target_arch=="x64"', { 242 ['target_arch=="ia32" or target_arch=="x64"', {
243 'targets': [ 243 'targets': [
244 { 244 {
245 'target_name': 'audio_processing_sse2', 245 'target_name': 'audio_processing_sse2',
246 'type': 'static_library', 246 'type': 'static_library',
247 'sources': [ 247 'sources': [
248 'aec/aec_core_sse2.cc', 248 'aec/aec_core_sse2.cc',
249 'aec/aec_rdft_sse2.c', 249 'aec/aec_rdft_sse2.cc',
250 ], 250 ],
251 'conditions': [ 251 'conditions': [
252 ['os_posix==1', { 252 ['os_posix==1', {
253 'cflags': [ '-msse2', ], 253 'cflags': [ '-msse2', ],
254 'xcode_settings': { 254 'xcode_settings': {
255 'OTHER_CFLAGS': [ '-msse2', ], 255 'OTHER_CFLAGS': [ '-msse2', ],
256 }, 256 },
257 }], 257 }],
258 ], 258 ],
259 }, 259 },
260 ], 260 ],
261 }], 261 }],
262 ['build_with_neon==1', { 262 ['build_with_neon==1', {
263 'targets': [{ 263 'targets': [{
264 'target_name': 'audio_processing_neon', 264 'target_name': 'audio_processing_neon',
265 'type': 'static_library', 265 'type': 'static_library',
266 'includes': ['../../build/arm_neon.gypi',], 266 'includes': ['../../build/arm_neon.gypi',],
267 'dependencies': [ 267 'dependencies': [
268 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', 268 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
269 ], 269 ],
270 'sources': [ 270 'sources': [
271 'aec/aec_core_neon.cc', 271 'aec/aec_core_neon.cc',
272 'aec/aec_rdft_neon.c', 272 'aec/aec_rdft_neon.cc',
273 'aecm/aecm_core_neon.cc', 273 'aecm/aecm_core_neon.cc',
274 'ns/nsx_core_neon.c', 274 'ns/nsx_core_neon.c',
275 ], 275 ],
276 }], 276 }],
277 }], 277 }],
278 ], 278 ],
279 } 279 }
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aec/aec_rdft_sse2.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine