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

Unified Diff: build/common.gypi

Issue 1160243004: Add build flag to disable hotwording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove space. Created 5 years, 7 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 | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 1866de0f3872da715a62fe133f4ae487c1019beb..f0c4de0b7385627fcb21bb80fbc48b0ab8e664f3 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -417,6 +417,9 @@
# Web speech is enabled by default. Set to 0 to disable.
'enable_web_speech%': 1,
+ # 'Ok Google' hotwording is disabled by default. Set to 1 to enable.
+ 'enable_hotwording%': 0,
+
# Notifications are compiled in by default. Set to 0 to disable.
'notifications%' : 1,
@@ -1152,6 +1155,7 @@
'configuration_policy%': '<(configuration_policy)',
'safe_browsing%': '<(safe_browsing)',
'enable_web_speech%': '<(enable_web_speech)',
+ 'enable_hotwording%': '<(enable_hotwording)',
'notifications%': '<(notifications)',
'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
'mac_want_real_dsym%': '<(mac_want_real_dsym)',
@@ -2419,8 +2423,9 @@
'use_lto%': 1,
}],
- ['branding=="Chrome" and buildtype=="Official"', {
+ ['branding=="Chrome"', {
Lei Zhang 2015/06/04 23:11:00 I'm not sure if this is what hangouts want. Maybe
Anand Mistry (off Chromium) 2015/06/05 00:12:50 Done. I've split hotwording into it's own section
'enable_hangout_services_extension%': 1,
+ 'enable_hotwording%': 1,
}, {
'enable_hangout_services_extension%': 0,
}],
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698