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

Unified Diff: webrtc/modules/audio_processing/BUILD.gn

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. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/aec_core.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 006d3a74cd14747f4371d3b293aba71456e945a5..a3434836d84d9068b739d4c089d90051a80f493a 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -25,7 +25,7 @@ source_set("audio_processing") {
"aec/aec_core.cc",
"aec/aec_core.h",
"aec/aec_core_internal.h",
- "aec/aec_rdft.c",
+ "aec/aec_rdft.cc",
"aec/aec_rdft.h",
"aec/aec_resampler.cc",
"aec/aec_resampler.h",
@@ -200,7 +200,7 @@ source_set("audio_processing") {
if (mips_float_abi == "hard") {
sources += [
"aec/aec_core_mips.cc",
- "aec/aec_rdft_mips.c",
+ "aec/aec_rdft_mips.cc",
]
}
} else {
@@ -241,7 +241,7 @@ if (current_cpu == "x86" || current_cpu == "x64") {
source_set("audio_processing_sse2") {
sources = [
"aec/aec_core_sse2.cc",
- "aec/aec_rdft_sse2.c",
+ "aec/aec_rdft_sse2.cc",
]
if (is_posix) {
@@ -257,7 +257,7 @@ if (rtc_build_with_neon) {
source_set("audio_processing_neon") {
sources = [
"aec/aec_core_neon.cc",
- "aec/aec_rdft_neon.c",
+ "aec/aec_rdft_neon.cc",
"aecm/aecm_core_neon.cc",
"ns/nsx_core_neon.c",
]
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/aec/aec_core.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698