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

Unified Diff: webrtc/media/media.gyp

Issue 2272423003: Deactivated the intelligibility enhancement functionality by default (Closed)
Patch Set: Put conditional building on the intelligibility_proc executable 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
Index: webrtc/media/media.gyp
diff --git a/webrtc/media/media.gyp b/webrtc/media/media.gyp
index f3f110267ccae2b9e4f7fe6edabf5855b28fdb68..01846d97fc6e54ba416a7282504a63d84c2ce24e 100644
--- a/webrtc/media/media.gyp
+++ b/webrtc/media/media.gyp
@@ -8,6 +8,10 @@
{
'includes': [ '../build/common.gypi', ],
+ 'variables': {
+ # Chooses whether the intelligibility enhancer should be used.
+ 'intelligibility_enhancer': 0,
+ },
'targets': [
{
'target_name': 'rtc_media',
@@ -125,6 +129,12 @@
'<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib',
],
}],
+ ['intelligibility_enhancer==1', {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=1',],
+ }, {
+ 'defines': ['WEBRTC_INTELLIGIBILITY_ENHANCER=0',],
+ }],
+
the sun 2016/08/26 12:08:56 dd
peah-webrtc 2016/08/26 13:09:43 Done.
['build_with_chromium==1', {
'dependencies': [
'<(webrtc_root)/modules/modules.gyp:video_capture',

Powered by Google App Engine
This is Rietveld 408576698