OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # This file contains Chrome-feature-related build flags (see ui.gni for | 5 # This file contains Chrome-feature-related build flags (see ui.gni for |
6 # UI-related ones). These should theoretically be moved to the build files of | 6 # UI-related ones). These should theoretically be moved to the build files of |
7 # the features themselves. | 7 # the features themselves. |
8 # | 8 # |
9 # However, today we have many "bad" dependencies on some of these flags from, | 9 # However, today we have many "bad" dependencies on some of these flags from, |
10 # e.g. base, so they need to be global to match the GYP configuration. Also, | 10 # e.g. base, so they need to be global to match the GYP configuration. Also, |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 cld_version = 2 | 120 cld_version = 2 |
121 } | 121 } |
122 | 122 |
123 # libudev usage. This currently only affects the content layer. | 123 # libudev usage. This currently only affects the content layer. |
124 use_udev = is_linux | 124 use_udev = is_linux |
125 | 125 |
126 # Enable the spell checker. | 126 # Enable the spell checker. |
127 enable_spellcheck = !is_ios | 127 enable_spellcheck = !is_ios |
128 | 128 |
129 # Use the operating system's spellchecker rather than hunspell. | 129 # Use the operating system's spellchecker rather than hunspell. |
130 use_platform_spellchecker = is_android || is_mac | 130 use_browser_spellchecker = is_android || is_mac |
131 | 131 |
132 enable_pepper_cdms = enable_plugins && (is_linux || is_mac || is_win) | 132 enable_pepper_cdms = enable_plugins && (is_linux || is_mac || is_win) |
133 | 133 |
134 # Enable basic printing support and UI. | 134 # Enable basic printing support and UI. |
135 enable_basic_printing = !is_chromeos | 135 enable_basic_printing = !is_chromeos |
136 | 136 |
137 # Enable printing with print preview. It does not imply | 137 # Enable printing with print preview. It does not imply |
138 # enable_basic_printing. It's possible to build Chrome with preview only. | 138 # enable_basic_printing. It's possible to build Chrome with preview only. |
139 enable_print_preview = !is_android | 139 enable_print_preview = !is_android |
140 | 140 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 # Hangout services is an extension that adds extra features to Hangouts. | 196 # Hangout services is an extension that adds extra features to Hangouts. |
197 # For official GYP builds, this flag is set, it will likely need to be | 197 # For official GYP builds, this flag is set, it will likely need to be |
198 # parameterized in the future for a similar use. | 198 # parameterized in the future for a similar use. |
199 enable_hangout_services_extension = false | 199 enable_hangout_services_extension = false |
200 | 200 |
201 # Whether to back up data before sync. | 201 # Whether to back up data before sync. |
202 enable_pre_sync_backup = is_win || is_mac || (is_linux && !is_chromeos) | 202 enable_pre_sync_backup = is_win || is_mac || (is_linux && !is_chromeos) |
203 | 203 |
204 # WebVR support disabled until platform implementations have been added | 204 # WebVR support disabled until platform implementations have been added |
205 enable_webvr = false | 205 enable_webvr = false |
OLD | NEW |