| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 | 126 |
| 127 # Enable the spell checker. | 127 # Enable the spell checker. |
| 128 enable_spellcheck = !is_ios | 128 enable_spellcheck = !is_ios |
| 129 | 129 |
| 130 # Use the operating system's spellchecker rather than hunspell. | 130 # Use the operating system's spellchecker rather than hunspell. |
| 131 use_browser_spellchecker = is_android || is_mac | 131 use_browser_spellchecker = is_android || is_mac |
| 132 | 132 |
| 133 # Use Minikin hyphenation engine. | 133 # Use Minikin hyphenation engine. |
| 134 use_minikin_hyphenation = is_android | 134 use_minikin_hyphenation = is_android |
| 135 | 135 |
| 136 # Enables the use of CDMs in pepper plugins. |
| 137 enable_pepper_cdms = |
| 138 enable_plugins && (is_linux || is_mac || is_win) && !is_chromecast |
| 139 |
| 136 # The seccomp-bpf sandbox is only supported on five architectures | 140 # The seccomp-bpf sandbox is only supported on five architectures |
| 137 # currently. | 141 # currently. |
| 138 # Do not disable seccomp_bpf anywhere without talking to | 142 # Do not disable seccomp_bpf anywhere without talking to |
| 139 # security@chromium.org! | 143 # security@chromium.org! |
| 140 use_seccomp_bpf = | 144 use_seccomp_bpf = |
| 141 (is_linux || is_android) && | 145 (is_linux || is_android) && |
| 142 (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || | 146 (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || |
| 143 current_cpu == "arm64" || current_cpu == "mipsel") | 147 current_cpu == "arm64" || current_cpu == "mipsel") |
| 144 | 148 |
| 145 # Enable notifications everywhere except iOS. | 149 # Enable notifications everywhere except iOS. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 168 | 172 |
| 169 enable_configuration_policy = !is_ios | 173 enable_configuration_policy = !is_ios |
| 170 | 174 |
| 171 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 175 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
| 172 # | 176 # |
| 173 # ============================================= | 177 # ============================================= |
| 174 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 178 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 175 # ============================================= | 179 # ============================================= |
| 176 # | 180 # |
| 177 # See comment at the top. | 181 # See comment at the top. |
| OLD | NEW |