| 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 # ============================================= | 5 # ============================================= |
| 6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 6 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 7 # ============================================= | 7 # ============================================= |
| 8 # | 8 # |
| 9 # These flags are effectively global. Your feature flag should go near the | 9 # These flags are effectively global. Your feature flag should go near the |
| 10 # code it controls. Most of these items are here now because they control | 10 # code it controls. Most of these items are here now because they control |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 enable_rlz_support = is_win || is_mac || is_ios || is_chromeos | 123 enable_rlz_support = is_win || is_mac || is_ios || is_chromeos |
| 124 enable_rlz = is_chrome_branded && enable_rlz_support | 124 enable_rlz = is_chrome_branded && enable_rlz_support |
| 125 | 125 |
| 126 # Image loader extension is enabled on ChromeOS only. | 126 # Image loader extension is enabled on ChromeOS only. |
| 127 enable_image_loader_extension = is_chromeos | 127 enable_image_loader_extension = is_chromeos |
| 128 | 128 |
| 129 # Chrome OS: whether to also build the upcoming version of | 129 # Chrome OS: whether to also build the upcoming version of |
| 130 # ChromeVox, which can then be enabled via a command-line switch. | 130 # ChromeVox, which can then be enabled via a command-line switch. |
| 131 enable_chromevox_next = false | 131 enable_chromevox_next = false |
| 132 | 132 |
| 133 # Use brlapi from brltty for braille display support. | |
| 134 use_brlapi = is_chromeos | |
| 135 | |
| 136 enable_configuration_policy = !is_ios | 133 enable_configuration_policy = !is_ios |
| 137 | 134 |
| 138 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 135 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
| 139 # | 136 # |
| 140 # ============================================= | 137 # ============================================= |
| 141 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 138 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 142 # ============================================= | 139 # ============================================= |
| 143 # | 140 # |
| 144 # See comment at the top. | 141 # See comment at the top. |
| OLD | NEW |