| 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 | |
| 140 # The seccomp-bpf sandbox is only supported on five architectures | 136 # The seccomp-bpf sandbox is only supported on five architectures |
| 141 # currently. | 137 # currently. |
| 142 # Do not disable seccomp_bpf anywhere without talking to | 138 # Do not disable seccomp_bpf anywhere without talking to |
| 143 # security@chromium.org! | 139 # security@chromium.org! |
| 144 use_seccomp_bpf = | 140 use_seccomp_bpf = |
| 145 (is_linux || is_android) && | 141 (is_linux || is_android) && |
| 146 (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || | 142 (current_cpu == "x86" || current_cpu == "x64" || current_cpu == "arm" || |
| 147 current_cpu == "arm64" || current_cpu == "mipsel") | 143 current_cpu == "arm64" || current_cpu == "mipsel") |
| 148 | 144 |
| 149 # Enable notifications everywhere except iOS. | 145 # Enable notifications everywhere except iOS. |
| (...skipping 22 matching lines...) Expand all Loading... |
| 172 | 168 |
| 173 enable_configuration_policy = !is_ios | 169 enable_configuration_policy = !is_ios |
| 174 | 170 |
| 175 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 171 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
| 176 # | 172 # |
| 177 # ============================================= | 173 # ============================================= |
| 178 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 174 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 179 # ============================================= | 175 # ============================================= |
| 180 # | 176 # |
| 181 # See comment at the top. | 177 # See comment at the top. |
| OLD | NEW |