| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 enable_plugin_installation = is_win || is_mac | 49 enable_plugin_installation = is_win || is_mac |
| 50 | 50 |
| 51 enable_service_discovery = enable_mdns || is_mac | 51 enable_service_discovery = enable_mdns || is_mac |
| 52 | 52 |
| 53 # Enables use of the session service, which is enabled by default. | 53 # Enables use of the session service, which is enabled by default. |
| 54 # Android stores them separately on the Java side. | 54 # Android stores them separately on the Java side. |
| 55 enable_session_service = !is_android && !is_ios && !is_chromecast | 55 enable_session_service = !is_android && !is_ios && !is_chromecast |
| 56 | 56 |
| 57 enable_supervised_users = !is_ios && !is_chromecast | 57 enable_supervised_users = !is_ios && !is_chromecast |
| 58 | 58 |
| 59 # Enables vr shell (enabled on same architectures as webvr). | |
| 60 # TODO(amp): Collapse webvr and vr shell build flags into a single vr flag. | |
| 61 enable_vr_shell = | |
| 62 is_android && (current_cpu == "arm" || current_cpu == "arm64") | |
| 63 | |
| 64 # Enables vr shell UI development on local or remote page. | 59 # Enables vr shell UI development on local or remote page. |
| 65 enable_vr_shell_ui_dev = false | 60 enable_vr_shell_ui_dev = false |
| 66 | 61 |
| 67 # Enable native notifications via XPC services (mac only). | 62 # Enable native notifications via XPC services (mac only). |
| 68 enable_xpc_notifications = false | 63 enable_xpc_notifications = false |
| 69 | 64 |
| 70 # Indicates if the build is using PGO. | 65 # Indicates if the build is using PGO. |
| 71 pgo_build = chrome_pgo_phase > 0 | 66 pgo_build = chrome_pgo_phase > 0 |
| 72 | 67 |
| 73 # Use vulcanized HTML/CSS/JS resources to speed up WebUI (chrome://) | 68 # Use vulcanized HTML/CSS/JS resources to speed up WebUI (chrome://) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 86 "enable_app_list=$enable_app_list", | 81 "enable_app_list=$enable_app_list", |
| 87 "enable_background=$enable_background", | 82 "enable_background=$enable_background", |
| 88 "enable_extensions=$enable_extensions", | 83 "enable_extensions=$enable_extensions", |
| 89 "enable_google_now=$enable_google_now", | 84 "enable_google_now=$enable_google_now", |
| 90 "enable_hangout_services_extension=$enable_hangout_services_extension", | 85 "enable_hangout_services_extension=$enable_hangout_services_extension", |
| 91 "enable_hotwording=$enable_hotwording", | 86 "enable_hotwording=$enable_hotwording", |
| 92 "enable_plugins=$enable_plugins", | 87 "enable_plugins=$enable_plugins", |
| 93 "enable_print_preview=$enable_print_preview", | 88 "enable_print_preview=$enable_print_preview", |
| 94 "enable_printing=$_enable_printing", | 89 "enable_printing=$_enable_printing", |
| 95 "enable_service_discovery=$enable_service_discovery", | 90 "enable_service_discovery=$enable_service_discovery", |
| 96 "enable_vr_shell=$enable_vr_shell", | |
| 97 "enable_webrtc=$enable_webrtc", | 91 "enable_webrtc=$enable_webrtc", |
| 98 "enable_webvr=$enable_webvr", | 92 "enable_webvr=$enable_webvr", |
| 99 "mac_views_browser=$mac_views_browser", | 93 "mac_views_browser=$mac_views_browser", |
| 100 "safe_browsing_mode=$safe_browsing_mode", | 94 "safe_browsing_mode=$safe_browsing_mode", |
| 101 "use_vulcanize=$use_vulcanize", | 95 "use_vulcanize=$use_vulcanize", |
| 102 ] | 96 ] |
| OLD | NEW |