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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 use_gconf = is_linux && !is_chromeos && !is_chromecast | 109 use_gconf = is_linux && !is_chromeos && !is_chromecast |
110 | 110 |
111 use_gio = is_linux && !is_chromeos && !is_chromecast | 111 use_gio = is_linux && !is_chromeos && !is_chromecast |
112 | 112 |
113 # Enable basic printing support and UI. | 113 # Enable basic printing support and UI. |
114 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios | 114 enable_basic_printing = !is_chromeos && !is_chromecast && !is_ios |
115 | 115 |
116 # Enable printing with print preview. It does not imply | 116 # Enable printing with print preview. It does not imply |
117 # enable_basic_printing. It's possible to build Chrome with preview only. | 117 # enable_basic_printing. It's possible to build Chrome with preview only. |
118 enable_print_preview = !is_android && !is_chromecast && !is_ios | 118 enable_print_preview = !is_android && !is_chromecast && !is_ios |
| 119 |
| 120 # Don't build IPC fuzzer by default. |
| 121 enable_ipc_fuzzer = false |
119 } | 122 } |
120 | 123 |
121 # Additional dependent variables ----------------------------------------------- | 124 # Additional dependent variables ----------------------------------------------- |
122 | 125 |
123 # Set the version of CLD. | 126 # Set the version of CLD. |
124 # 1: (DEPRECATED! See http://crbug.com/528305 for info) Use only CLD1. | 127 # 1: (DEPRECATED! See http://crbug.com/528305 for info) Use only CLD1. |
125 # 2: Use only CLD2. | 128 # 2: Use only CLD2. |
126 cld_version = 2 | 129 cld_version = 2 |
127 | 130 |
128 # Enable the spell checker. | 131 # Enable the spell checker. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 enable_chromevox_next = false | 173 enable_chromevox_next = false |
171 | 174 |
172 # Use brlapi from brltty for braille display support. | 175 # Use brlapi from brltty for braille display support. |
173 use_brlapi = is_chromeos | 176 use_brlapi = is_chromeos |
174 | 177 |
175 # Enable WebVR support by default on Android | 178 # Enable WebVR support by default on Android |
176 # Still requires command line flag to access API | 179 # Still requires command line flag to access API |
177 enable_webvr = is_android | 180 enable_webvr = is_android |
178 | 181 |
179 enable_configuration_policy = !is_ios | 182 enable_configuration_policy = !is_ios |
OLD | NEW |