Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

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

Issue 1754223004: Move aec_resampler.c to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Corrected casts Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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 19 matching lines...) Expand all
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.c',
39 'aec/aec_rdft.h', 39 'aec/aec_rdft.h',
40 'aec/aec_resampler.c', 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.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',
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'sources': [ 269 'sources': [
270 'aec/aec_core_neon.cc', 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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698