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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 # Enables Native Client support. | 28 # Enables Native Client support. |
29 # Temporarily disable nacl on arm64 linux to get rid of compilation errors. | 29 # Temporarily disable nacl on arm64 linux to get rid of compilation errors. |
30 # TODO(mcgrathr): When mipsel-nacl-clang is available, drop the exclusion. | 30 # TODO(mcgrathr): When mipsel-nacl-clang is available, drop the exclusion. |
31 enable_nacl = !is_ios && !is_android && !is_chromecast && | 31 enable_nacl = !is_ios && !is_android && !is_chromecast && |
32 current_cpu != "mipsel" && !(is_linux && target_cpu == "arm64") | 32 current_cpu != "mipsel" && !(is_linux && target_cpu == "arm64") |
33 | 33 |
34 # Non-SFI is not yet supported on mipsel | 34 # Non-SFI is not yet supported on mipsel |
35 enable_nacl_nonsfi = current_cpu != "mipsel" | 35 enable_nacl_nonsfi = current_cpu != "mipsel" |
36 | 36 |
37 # If debug_devtools is set to true, JavaScript files for DevTools are stored | |
38 # as is and loaded from disk. Otherwise, a concatenated file is stored in | |
39 # resources.pak. It is still possible to load JS files from disk by passing | |
40 # --debug-devtools cmdline switch. | |
41 debug_devtools = false | |
42 | |
43 # Enables WebRTC. | 37 # Enables WebRTC. |
44 enable_webrtc = !is_ios | 38 enable_webrtc = !is_ios |
45 | 39 |
46 # Enables the Media Router. | 40 # Enables the Media Router. |
47 enable_media_router = !is_ios && !is_chromecast | 41 enable_media_router = !is_ios && !is_chromecast |
48 | 42 |
49 # Enables proprietary codecs and demuxers; e.g. H264, AAC, MP3, and MP4. | 43 # Enables proprietary codecs and demuxers; e.g. H264, AAC, MP3, and MP4. |
50 # We always build Google Chrome and Chromecast with proprietary codecs. | 44 # We always build Google Chrome and Chromecast with proprietary codecs. |
51 proprietary_codecs = is_chrome_branded || is_chromecast | 45 proprietary_codecs = is_chrome_branded || is_chromecast |
52 | 46 |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 | 147 |
154 enable_configuration_policy = !is_ios | 148 enable_configuration_policy = !is_ios |
155 | 149 |
156 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 150 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
157 # | 151 # |
158 # ============================================= | 152 # ============================================= |
159 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 153 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
160 # ============================================= | 154 # ============================================= |
161 # | 155 # |
162 # See comment at the top. | 156 # See comment at the top. |
OLD | NEW |