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

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

Issue 2300813004: Moved the place for the aec_debug_dump build flag and changed the name to apm_debug_dump (Closed)
Patch Set: Removed duplicate definition of build flag Created 4 years, 4 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 | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/logging/apm_data_dumper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14e1b66862b75ad655d5effb4453e054aa20e4ac..cbd4fdf4a7e0f66b07bb131104106b266adbd22a 100644
--- a/webrtc/modules/audio_processing/audio_processing.gypi
+++ b/webrtc/modules/audio_processing/audio_processing.gypi
@@ -9,8 +9,6 @@
{
'variables': {
'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/audio_processing/asm_offsets',
- # Outputs some low-level debug files.
- 'aec_debug_dump%': 0,
},
'targets': [
{
@@ -165,10 +163,10 @@
'voice_detection_impl.h',
],
'conditions': [
- ['aec_debug_dump==1', {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',],
+ ['apm_debug_dump==1', {
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',],
}, {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',],
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',],
}],
['aec_untrusted_delay_for_testing==1', {
'defines': ['WEBRTC_UNTRUSTED_DELAY',],
@@ -278,10 +276,10 @@
'aec/aec_rdft_sse2.cc',
],
'conditions': [
- ['aec_debug_dump==1', {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',],
+ ['apm_debug_dump==1', {
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',],
}, {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',],
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',],
}],
['os_posix==1', {
'cflags': [ '-msse2', ],
@@ -308,11 +306,11 @@
'ns/nsx_core_neon.c',
],
'conditions': [
- ['aec_debug_dump==1', {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=1',],
+ ['apm_debug_dump==1', {
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=1',],
}],
- ['aec_debug_dump==0', {
- 'defines': ['WEBRTC_AEC_DEBUG_DUMP=0',],
+ ['apm_debug_dump==0', {
+ 'defines': ['WEBRTC_APM_DEBUG_DUMP=0',],
}],
],
}],
« no previous file with comments | « webrtc/modules/audio_processing/BUILD.gn ('k') | webrtc/modules/audio_processing/logging/apm_data_dumper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698