Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 038c11d89e79da035f2a3604266a55f49c7230f8..86b6eaaacd8f2dbb4a28472fa5d79db9bf1b0593 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -1024,10 +1024,15 @@ |
}, { |
'pkg-config': 'pkg-config' |
}], |
- ], |
- # WebVR support disabled until platform implementations have been added |
- 'enable_webvr%': 0, |
+ # Enable WebVR support by default on Android |
+ # Still requires command line flag to access API |
+ ['OS=="android"', { |
+ 'enable_webvr%': 1, |
+ }, { |
+ 'enable_webvr%': 0, |
+ }], |
+ ], |
# Setting this to '0' will cause V8's startup snapshot to be |
# embedded in the binary instead of being a external files. |