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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 enable_session_service = !is_android && !is_ios && !is_chromecast | 60 enable_session_service = !is_android && !is_ios && !is_chromecast |
61 | 61 |
62 enable_plugin_installation = is_win || is_mac | 62 enable_plugin_installation = is_win || is_mac |
63 | 63 |
64 enable_app_list = is_chromeos | 64 enable_app_list = is_chromeos |
65 | 65 |
66 enable_supervised_users = !is_ios && !is_chromecast | 66 enable_supervised_users = !is_ios && !is_chromecast |
67 | 67 |
68 enable_remoting = !is_ios && !is_chromecast | 68 enable_remoting = !is_ios && !is_chromecast |
69 | 69 |
70 # Enables browser side Content Decryption Modules. Required for embedders | |
71 # (e.g. Android and ChromeCast) that use a browser side CDM. | |
72 enable_browser_cdms = is_android || is_chromecast | |
73 | |
74 # Hangout services is an extension that adds extra features to Hangouts. | 70 # Hangout services is an extension that adds extra features to Hangouts. |
75 # For official GYP builds, this flag is set. | 71 # For official GYP builds, this flag is set. |
76 enable_hangout_services_extension = false | 72 enable_hangout_services_extension = false |
77 | 73 |
78 # Variable safe_browsing is used to control the build time configuration for | 74 # Variable safe_browsing is used to control the build time configuration for |
79 # safe browsing feature. Safe browsing can be compiled in 3 different levels: | 75 # safe browsing feature. Safe browsing can be compiled in 3 different levels: |
80 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an | 76 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an |
81 # external API. | 77 # external API. |
82 if (is_ios || is_chromecast) { | 78 if (is_ios || is_chromecast) { |
83 safe_browsing_mode = 0 | 79 safe_browsing_mode = 0 |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 | 174 |
179 enable_configuration_policy = !is_ios | 175 enable_configuration_policy = !is_ios |
180 | 176 |
181 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 177 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
182 # | 178 # |
183 # ============================================= | 179 # ============================================= |
184 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 180 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
185 # ============================================= | 181 # ============================================= |
186 # | 182 # |
187 # See comment at the top. | 183 # See comment at the top. |
OLD | NEW |