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

Unified Diff: webrtc/modules/audio_processing/audio_processing.gypi

Issue 1713923002: Moved the AEC C code to be built using C++ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Format changes to comply with lint Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/audio_processing.gypi
diff --git a/webrtc/modules/audio_processing/audio_processing.gypi b/webrtc/modules/audio_processing/audio_processing.gypi
index eaee6443dd83b57363f8c845bba43855f8f7ccbc..85698cf7f369c46003ec0e8882683e777379cd71 100644
--- a/webrtc/modules/audio_processing/audio_processing.gypi
+++ b/webrtc/modules/audio_processing/audio_processing.gypi
@@ -32,14 +32,14 @@
'<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
],
'sources': [
- 'aec/aec_core.c',
+ 'aec/aec_core.cc',
'aec/aec_core.h',
'aec/aec_core_internal.h',
'aec/aec_rdft.c',
'aec/aec_rdft.h',
'aec/aec_resampler.c',
'aec/aec_resampler.h',
- 'aec/echo_cancellation.c',
+ 'aec/echo_cancellation.cc',
'aec/echo_cancellation_internal.h',
'aec/echo_cancellation.h',
'aecm/aecm_core.c',
@@ -205,7 +205,7 @@
'conditions': [
['mips_float_abi=="hard"', {
'sources': [
- 'aec/aec_core_mips.c',
+ 'aec/aec_core_mips.cc',
'aec/aec_rdft_mips.c',
],
}],
@@ -244,7 +244,7 @@
'target_name': 'audio_processing_sse2',
'type': 'static_library',
'sources': [
- 'aec/aec_core_sse2.c',
+ 'aec/aec_core_sse2.cc',
'aec/aec_rdft_sse2.c',
],
'conditions': [
@@ -267,7 +267,7 @@
'<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
],
'sources': [
- 'aec/aec_core_neon.c',
+ 'aec/aec_core_neon.cc',
'aec/aec_rdft_neon.c',
'aecm/aecm_core_neon.c',
'ns/nsx_core_neon.c',
« no previous file with comments | « webrtc/modules/audio_processing/aec/system_delay_unittest.cc ('k') | webrtc/modules/audio_processing/audio_processing_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698