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

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

Issue 2272423003: Deactivated the intelligibility enhancement functionality by default (Closed)
Patch Set: Changed name of build file flags 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/audio_processing_impl.cc ('k') | webrtc/modules/modules.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/audio_processing_tests.gypi
diff --git a/webrtc/modules/audio_processing/audio_processing_tests.gypi b/webrtc/modules/audio_processing/audio_processing_tests.gypi
index 87598edeef45fbec8aa99264433d6c6dc973b2e8..d68fed3ff194e23024b3504cc4d4b0dd1c3495ec 100644
--- a/webrtc/modules/audio_processing/audio_processing_tests.gypi
+++ b/webrtc/modules/audio_processing/audio_processing_tests.gypi
@@ -61,22 +61,29 @@
'beamformer/nonlinear_beamformer_test.cc',
],
}, # nonlinear_beamformer_test
- {
- 'target_name': 'intelligibility_proc',
- 'type': 'executable',
- 'dependencies': [
- 'audioproc_test_utils',
- '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(webrtc_root)/modules/modules.gyp:audio_processing',
- '<(webrtc_root)/test/test.gyp:test_support',
- ],
- 'sources': [
- 'intelligibility/test/intelligibility_proc.cc',
- ],
- }, # intelligibility_proc
],
'conditions': [
+ ['enable_intelligibility_enhancer==1', {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
+ 'targets': [
+ {
+ 'target_name': 'intelligibility_proc',
+ 'type': 'executable',
+ 'dependencies': [
+ 'audioproc_test_utils',
+ '<(DEPTH)/third_party/gflags/gflags.gyp:gflags',
+ '<(DEPTH)/testing/gtest.gyp:gtest',
+ '<(webrtc_root)/modules/modules.gyp:audio_processing',
+ '<(webrtc_root)/test/test.gyp:test_support',
+ ],
+ 'sources': [
+ 'intelligibility/test/intelligibility_proc.cc',
+ ],
+ },
+ ],
+ }, {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
+ }],
['enable_protobuf==1', {
'targets': [
{
« no previous file with comments | « webrtc/modules/audio_processing/audio_processing_impl.cc ('k') | webrtc/modules/modules.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698