| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 # Android stores them separately on the Java side. | 124 # Android stores them separately on the Java side. |
| 125 enable_session_service = !is_android && !is_ios | 125 enable_session_service = !is_android && !is_ios |
| 126 | 126 |
| 127 # Whether we are using the rlz library or not. Platforms like Android send | 127 # Whether we are using the rlz library or not. Platforms like Android send |
| 128 # rlz codes for searches but do not use the library. | 128 # rlz codes for searches but do not use the library. |
| 129 enable_rlz = is_chrome_branded && (is_win || is_mac || is_ios || is_chromeos) | 129 enable_rlz = is_chrome_branded && (is_win || is_mac || is_ios || is_chromeos) |
| 130 | 130 |
| 131 enable_plugin_installation = is_win || is_mac | 131 enable_plugin_installation = is_win || is_mac |
| 132 | 132 |
| 133 enable_app_list = !is_ios && !is_android | 133 enable_app_list = !is_ios && !is_android |
| 134 enable_settings_app = enable_app_list && !is_chromeos |
| 134 | 135 |
| 135 enable_managed_users = !is_ios | 136 enable_managed_users = !is_ios |
| 136 | 137 |
| 137 enable_service_discovery = enable_mdns || is_mac | 138 enable_service_discovery = enable_mdns || is_mac |
| 138 | 139 |
| 139 enable_autofill_dialog = !is_ios && !(is_android && is_android_webview_build) | 140 enable_autofill_dialog = !is_ios && !(is_android && is_android_webview_build) |
| 140 | 141 |
| 141 enable_wifi_bootstrapping = is_win || is_mac | 142 enable_wifi_bootstrapping = is_win || is_mac |
| 143 |
| 144 # Image loader extension is enabled on ChromeOS only. |
| 145 enable_image_loader_extension = is_chromeos |
| 146 |
| 147 enable_remoting = !is_ios && !is_android |
| 148 |
| 149 enable_google_now = !is_ios && !is_android |
| OLD | NEW |