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

Side by Side Diff: build/config/features.gni

Issue 2219203002: Migrate WebVR Cardboard implementation to GVR (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gvr_third_party
Patch Set: Disabling WebVR on non-component builds Created 4 years, 4 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 | « no previous file | chrome/android/BUILD.gn » ('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 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 117
118 # Enable printing with print preview. It does not imply 118 # Enable printing with print preview. It does not imply
119 # enable_basic_printing. It's possible to build Chrome with preview only. 119 # enable_basic_printing. It's possible to build Chrome with preview only.
120 enable_print_preview = !is_android && !is_chromecast && !is_ios 120 enable_print_preview = !is_android && !is_chromecast && !is_ios
121 121
122 # Whether or not to use external popup menu. 122 # Whether or not to use external popup menu.
123 use_external_popup_menu = is_android || is_mac 123 use_external_popup_menu = is_android || is_mac
124 124
125 # Enable WebVR support by default on Android 125 # Enable WebVR support by default on Android
126 # Still requires command line flag to access API 126 # Still requires command line flag to access API
127 enable_webvr = is_android 127 enable_webvr = is_android && is_component_build &&
michaelbai 2016/09/29 19:14:51 It seems not correct to use is_component_build her
bshe 2016/09/29 19:32:24 bajones@ is OOO. I can try to answer your question
michaelbai 2016/09/29 19:42:14 In this case, WebVR shouldn't be enabled by defaul
bshe 2016/09/29 19:50:22 We are targetting to ship it for M55. So more cove
michaelbai 2016/09/29 20:01:46 First of all, the issue caused by enable_webvr dep
bshe 2016/09/29 21:03:30 webvr actually gets a thumbs up to release in M55
128 (current_cpu == "x86" || current_cpu == "x64" ||
129 current_cpu == "arm" || current_cpu == "arm64")
128 } 130 }
129 131
130 # Additional dependent variables ----------------------------------------------- 132 # Additional dependent variables -----------------------------------------------
131 133
132 # Enable the spell checker. 134 # Enable the spell checker.
133 enable_spellcheck = !is_ios 135 enable_spellcheck = !is_ios
134 136
135 # Use the operating system's spellchecker rather than hunspell. 137 # Use the operating system's spellchecker rather than hunspell.
136 use_browser_spellchecker = is_android || is_mac 138 use_browser_spellchecker = is_android || is_mac
137 139
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 181
180 enable_configuration_policy = !is_ios 182 enable_configuration_policy = !is_ios
181 183
182 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build 184 enable_mac_keystone = is_mac && is_chrome_branded && is_official_build
183 # 185 #
184 # ============================================= 186 # =============================================
185 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE 187 # PLEASE DO NOT ADD MORE FLAGS TO THIS FILE
186 # ============================================= 188 # =============================================
187 # 189 #
188 # See comment at the top. 190 # See comment at the top.
OLDNEW
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698