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

Side by Side Diff: chrome/common/features.gni

Issue 2495193003: Convert spellcheck to a buildflag header. (Closed)
Patch Set: . Created 4 years, 1 month 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//components/spellcheck/spellcheck_build_features.gni")
9 import("//extensions/features/features.gni") 10 import("//extensions/features/features.gni")
10 import("//net/features.gni") 11 import("//net/features.gni")
11 import("//printing/features/features.gni") 12 import("//printing/features/features.gni")
12 13
13 # Please keep features in alphabetical order. 14 # Please keep features in alphabetical order.
14 declare_args() { 15 declare_args() {
15 # Whether the Java UI is being used (Java infobars and popups, Java native 16 # Whether the Java UI is being used (Java infobars and popups, Java native
16 # settings and first run experience, sign-in etc.). 17 # settings and first run experience, sign-in etc.).
17 # Default to true if compiling for android, but allow this being overriden 18 # Default to true if compiling for android, but allow this being overriden
18 # through the environment. 19 # through the environment.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 chrome_grit_defines = [ 87 chrome_grit_defines = [
87 "enable_app_list=$enable_app_list", 88 "enable_app_list=$enable_app_list",
88 "enable_background=$enable_background", 89 "enable_background=$enable_background",
89 "enable_extensions=$enable_extensions", 90 "enable_extensions=$enable_extensions",
90 "enable_google_now=$enable_google_now", 91 "enable_google_now=$enable_google_now",
91 "enable_hangout_services_extension=$enable_hangout_services_extension", 92 "enable_hangout_services_extension=$enable_hangout_services_extension",
92 "enable_hotwording=$enable_hotwording", 93 "enable_hotwording=$enable_hotwording",
93 "enable_print_preview=$enable_print_preview", 94 "enable_print_preview=$enable_print_preview",
94 "enable_printing=$_enable_printing", 95 "enable_printing=$_enable_printing",
95 "enable_service_discovery=$enable_service_discovery", 96 "enable_service_discovery=$enable_service_discovery",
97 "enable_spellcheck=$enable_spellcheck",
96 "enable_vr_shell=$enable_vr_shell", 98 "enable_vr_shell=$enable_vr_shell",
97 "enable_webvr=$enable_webvr", 99 "enable_webvr=$enable_webvr",
98 "safe_browsing_mode=$safe_browsing_mode", 100 "safe_browsing_mode=$safe_browsing_mode",
99 "use_vulcanize=$use_vulcanize", 101 "use_vulcanize=$use_vulcanize",
100 ] 102 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698