| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 proprietary_codecs = is_chrome_branded || is_chromecast | 54 proprietary_codecs = is_chrome_branded || is_chromecast |
| 55 | 55 |
| 56 # Enables use of the session service, which is enabled by default. | 56 # Enables use of the session service, which is enabled by default. |
| 57 # Android stores them separately on the Java side. | 57 # Android stores them separately on the Java side. |
| 58 enable_session_service = !is_android && !is_ios && !is_chromecast | 58 enable_session_service = !is_android && !is_ios && !is_chromecast |
| 59 | 59 |
| 60 enable_app_list = is_chromeos | 60 enable_app_list = is_chromeos |
| 61 | 61 |
| 62 enable_supervised_users = !is_ios && !is_chromecast | 62 enable_supervised_users = !is_ios && !is_chromecast |
| 63 | 63 |
| 64 enable_remoting = !is_ios && !is_chromecast | |
| 65 | |
| 66 # Variable safe_browsing is used to control the build time configuration for | 64 # Variable safe_browsing is used to control the build time configuration for |
| 67 # safe browsing feature. Safe browsing can be compiled in 3 different levels: | 65 # safe browsing feature. Safe browsing can be compiled in 3 different levels: |
| 68 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an | 66 # 0 disables it, 1 enables it fully, and 2 enables mobile protection via an |
| 69 # external API. | 67 # external API. |
| 70 if (is_ios || is_chromecast) { | 68 if (is_ios || is_chromecast) { |
| 71 safe_browsing_mode = 0 | 69 safe_browsing_mode = 0 |
| 72 } else if (is_android) { | 70 } else if (is_android) { |
| 73 safe_browsing_mode = 2 | 71 safe_browsing_mode = 2 |
| 74 } else { | 72 } else { |
| 75 safe_browsing_mode = 1 | 73 safe_browsing_mode = 1 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 | 158 |
| 161 enable_configuration_policy = !is_ios | 159 enable_configuration_policy = !is_ios |
| 162 | 160 |
| 163 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build | 161 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build |
| 164 # | 162 # |
| 165 # ============================================= | 163 # ============================================= |
| 166 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE | 164 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE |
| 167 # ============================================= | 165 # ============================================= |
| 168 # | 166 # |
| 169 # See comment at the top. | 167 # See comment at the top. |
| OLD | NEW |