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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/features.gni
diff --git a/build/config/features.gni b/build/config/features.gni
index e1dbbcafaf2f87433a8cad2f7135117161c7399c..a7fd9454ab9b2471bee7d5022a035833b887486d 100644
--- a/build/config/features.gni
+++ b/build/config/features.gni
@@ -124,7 +124,9 @@ declare_args() {
# Enable WebVR support by default on Android
# Still requires command line flag to access API
- enable_webvr = is_android
+ 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
+ (current_cpu == "x86" || current_cpu == "x64" ||
+ current_cpu == "arm" || current_cpu == "arm64")
}
# Additional dependent variables -----------------------------------------------
« 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