| Index: build/common.gypi
|
| diff --git a/build/common.gypi b/build/common.gypi
|
| index d87e3c5739962b9d726499046ed02c635014e4be..3e5d78d44c11c9bbcba90bfafd67489135170323 100644
|
| --- a/build/common.gypi
|
| +++ b/build/common.gypi
|
| @@ -1014,6 +1014,14 @@
|
| }, {
|
| 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86',
|
| }],
|
| +
|
| + # 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
|
| @@ -1232,6 +1240,7 @@
|
| 'mac_views_browser%': '<(mac_views_browser)',
|
| 'android_app_version_name%': '<(android_app_version_name)',
|
| 'android_app_version_code%': '<(android_app_version_code)',
|
| + 'enable_webvr%': '<(enable_webvr)',
|
|
|
| # Use system protobuf instead of bundled one.
|
| 'use_system_protobuf%': 0,
|
| @@ -3032,6 +3041,9 @@
|
| ['v8_use_external_startup_data==1', {
|
| 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA'],
|
| }],
|
| + ['enable_webvr==1', {
|
| + 'defines': ['ENABLE_WEBVR=1'],
|
| + }],
|
|
|
| # SAFE_BROWSING_SERVICE - browser manages a safe-browsing service.
|
| # SAFE_BROWSING_DB_LOCAL - service manages a local database.
|
|
|