Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: chrome/common/features.gni

Issue 2680723003: Remove ENABLE_VR_SHELL compile-time define. (Closed)
Patch Set: Fix lint warnings generated by vr_shell's new pickier checks. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ]
OLDNEW
« no previous file with comments | « chrome/common/BUILD.gn ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698