| 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 # Enable hole punching for the protected video. | |
| 71 enable_video_hole = is_android && !is_chromecast | |
| 72 | |
| 73 # Enables browser side Content Decryption Modules. Required for embedders | 70 # Enables browser side Content Decryption Modules. Required for embedders |
| 74 # (e.g. Android and ChromeCast) that use a browser side CDM. | 71 # (e.g. Android and ChromeCast) that use a browser side CDM. |
| 75 enable_browser_cdms = is_android || is_chromecast | 72 enable_browser_cdms = is_android || is_chromecast |
| 76 | 73 |
| 77 # Hangout services is an extension that adds extra features to Hangouts. | 74 # Hangout services is an extension that adds extra features to Hangouts. |
| 78 # For official GYP builds, this flag is set. | 75 # For official GYP builds, this flag is set. |
| 79 enable_hangout_services_extension = false | 76 enable_hangout_services_extension = false |
| 80 | 77 |
| 81 # Variable safe_browsing is used to control the build time configuration for | 78 # Variable safe_browsing is used to control the build time configuration for |
| 82 # safe browsing feature. Safe browsing can be compiled in 3 different levels: | 79 # safe browsing feature. Safe browsing can be compiled in 3 different levels: |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 178 |
| 182 enable_configuration_policy = !is_ios | 179 enable_configuration_policy = !is_ios |
| 183 | 180 |
| 184 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 181 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
| 185 # | 182 # |
| 186 # ============================================= | 183 # ============================================= |
| 187 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 184 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 188 # ============================================= | 185 # ============================================= |
| 189 # | 186 # |
| 190 # See comment at the top. | 187 # See comment at the top. |
| OLD | NEW |