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

Side by Side Diff: build/common.gypi

Issue 1218693004: Add build flag to disable hotwording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2403
Patch Set: Resolve merge conflict. Created 5 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 # for safe browsing feature. Safe browsing can be compiled in 4 different 374 # for safe browsing feature. Safe browsing can be compiled in 4 different
375 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and 375 # levels: 0 disables it, 1 enables it fully, and 2 enables only UI and
376 # reporting features for use with Data Saver on Mobile, and 3 enables 376 # reporting features for use with Data Saver on Mobile, and 3 enables
377 # extended mobile protection via an external API. When 3 is fully 377 # extended mobile protection via an external API. When 3 is fully
378 # deployed, it will replace 2. 378 # deployed, it will replace 2.
379 'safe_browsing%': 1, 379 'safe_browsing%': 1,
380 380
381 # Web speech is enabled by default. Set to 0 to disable. 381 # Web speech is enabled by default. Set to 0 to disable.
382 'enable_web_speech%': 1, 382 'enable_web_speech%': 1,
383 383
384 # 'Ok Google' hotwording is enabled by default. Set to 0 to disable.
385 'enable_hotwording%': 1,
386
384 # Notifications are compiled in by default. Set to 0 to disable. 387 # Notifications are compiled in by default. Set to 0 to disable.
385 'notifications%' : 1, 388 'notifications%' : 1,
386 389
387 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for 390 # Use dsymutil to generate real .dSYM files on Mac. The default is 0 for
388 # regular builds and 1 for ASan builds. 391 # regular builds and 1 for ASan builds.
389 'mac_want_real_dsym%': 'default', 392 'mac_want_real_dsym%': 'default',
390 393
391 # If this is set, the clang plugins used on the buildbot will be used. 394 # If this is set, the clang plugins used on the buildbot will be used.
392 # Run tools/clang/scripts/update.sh to make sure they are compiled. 395 # Run tools/clang/scripts/update.sh to make sure they are compiled.
393 # This causes 'clang_chrome_plugins_flags' to be set. 396 # This causes 'clang_chrome_plugins_flags' to be set.
(...skipping 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 'use_third_party_translations%': '<(use_third_party_translations)', 1130 'use_third_party_translations%': '<(use_third_party_translations)',
1128 'remoting%': '<(remoting)', 1131 'remoting%': '<(remoting)',
1129 'enable_one_click_signin%': '<(enable_one_click_signin)', 1132 'enable_one_click_signin%': '<(enable_one_click_signin)',
1130 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)', 1133 'enable_pre_sync_backup%': '<(enable_pre_sync_backup)',
1131 'enable_media_router%': '<(enable_media_router)', 1134 'enable_media_router%': '<(enable_media_router)',
1132 'enable_webrtc%': '<(enable_webrtc)', 1135 'enable_webrtc%': '<(enable_webrtc)',
1133 'chromium_win_pch%': '<(chromium_win_pch)', 1136 'chromium_win_pch%': '<(chromium_win_pch)',
1134 'configuration_policy%': '<(configuration_policy)', 1137 'configuration_policy%': '<(configuration_policy)',
1135 'safe_browsing%': '<(safe_browsing)', 1138 'safe_browsing%': '<(safe_browsing)',
1136 'enable_web_speech%': '<(enable_web_speech)', 1139 'enable_web_speech%': '<(enable_web_speech)',
1140 'enable_hotwording%': '<(enable_hotwording)',
1137 'notifications%': '<(notifications)', 1141 'notifications%': '<(notifications)',
1138 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)', 1142 'clang_use_chrome_plugins%': '<(clang_use_chrome_plugins)',
1139 'mac_want_real_dsym%': '<(mac_want_real_dsym)', 1143 'mac_want_real_dsym%': '<(mac_want_real_dsym)',
1140 'asan%': '<(asan)', 1144 'asan%': '<(asan)',
1141 'asan_blacklist%': '<(asan_blacklist)', 1145 'asan_blacklist%': '<(asan_blacklist)',
1142 'asan_coverage%': '<(asan_coverage)', 1146 'asan_coverage%': '<(asan_coverage)',
1143 'sanitizer_coverage%': '<(sanitizer_coverage)', 1147 'sanitizer_coverage%': '<(sanitizer_coverage)',
1144 'asan_field_padding%': '<(asan_field_padding)', 1148 'asan_field_padding%': '<(asan_field_padding)',
1145 'use_sanitizer_options%': '<(use_sanitizer_options)', 1149 'use_sanitizer_options%': '<(use_sanitizer_options)',
1146 'syzyasan%': '<(syzyasan)', 1150 'syzyasan%': '<(syzyasan)',
(...skipping 5039 matching lines...) Expand 10 before | Expand all | Expand 10 after
6186 # settings in target dicts. SYMROOT is a special case, because many other 6190 # settings in target dicts. SYMROOT is a special case, because many other
6187 # Xcode variables depend on it, including variables such as 6191 # Xcode variables depend on it, including variables such as
6188 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6192 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6189 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6193 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6190 # files to appear (when present) in the UI as actual files and not red 6194 # files to appear (when present) in the UI as actual files and not red
6191 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6195 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6192 # and therefore SYMROOT, needs to be set at the project level. 6196 # and therefore SYMROOT, needs to be set at the project level.
6193 'SYMROOT': '<(DEPTH)/xcodebuild', 6197 'SYMROOT': '<(DEPTH)/xcodebuild',
6194 }, 6198 },
6195 } 6199 }
OLDNEW
« 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