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 UI-related build flags. It should theoretically be in the | 5 # This file contains UI-related build flags. It should theoretically be in the |
6 # src/ui directory and only things that depend on the ui module should get the | 6 # src/ui directory and only things that depend on the ui module should get the |
7 # definitions. | 7 # definitions. |
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. | 10 # e.g. base, so they need to be global. |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 if (is_android) { | 98 if (is_android) { |
99 safe_browsing_mode = 2 | 99 safe_browsing_mode = 2 |
100 } else if (is_ios) { | 100 } else if (is_ios) { |
101 safe_browsing_mode = 0 | 101 safe_browsing_mode = 0 |
102 } else { | 102 } else { |
103 safe_browsing_mode = 1 | 103 safe_browsing_mode = 1 |
104 } | 104 } |
105 | 105 |
106 enable_configuration_policy = true | 106 enable_configuration_policy = true |
107 | 107 |
108 # The data acquisition mode for CLD2. Possible values are: | |
109 # static: CLD2 data is statically linked to the executable. | |
110 # standalone: CLD2 data is provided in a standalone file that is | |
111 # bundled with the executable. | |
112 # component: CLD2 data is provided as a Chrome "component" and is | |
113 # downloaded via the component updater. | |
114 # | |
115 # For more information on switching the CLD2 data source, see: | |
116 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/compact-langu
age-detector-cld-data-source-configuration | |
117 cld2_data_source = "static" | |
118 | |
119 # Enables support for background apps. | 108 # Enables support for background apps. |
120 enable_background = !is_ios && !is_android | 109 enable_background = !is_ios && !is_android |
121 | 110 |
122 enable_task_manager = !is_ios && !is_android | 111 enable_task_manager = !is_ios && !is_android |
123 | 112 |
124 use_cups = is_desktop_linux || is_mac | 113 use_cups = is_desktop_linux || is_mac |
125 | 114 |
126 enable_themes = !is_android && !is_chromeos | 115 enable_themes = !is_android && !is_chromeos |
127 | 116 |
128 # TODO(scottmg) remove this when we've fixed printing. | 117 # TODO(scottmg) remove this when we've fixed printing. |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 # ChromeVox, which can then be enabled via a command-line switch. | 153 # ChromeVox, which can then be enabled via a command-line switch. |
165 enable_chromevox_next = false | 154 enable_chromevox_next = false |
166 | 155 |
167 # Use brlapi from brltty for braille display support. | 156 # Use brlapi from brltty for braille display support. |
168 use_brlapi = is_chromeos | 157 use_brlapi = is_chromeos |
169 | 158 |
170 # Option controlling the use of GConf (the classic GNOME configuration | 159 # Option controlling the use of GConf (the classic GNOME configuration |
171 # system). | 160 # system). |
172 # TODO(GYP) also require !embedded to enable. | 161 # TODO(GYP) also require !embedded to enable. |
173 use_gconf = is_linux && !is_chromeos | 162 use_gconf = is_linux && !is_chromeos |
OLD | NEW |