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

Side by Side Diff: build/common.gypi

Issue 1200303002: Android WebVR implementation, Cardboard 0.5.5 SDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after
1018 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a md64', 1018 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a md64',
1019 }, { 1019 }, {
1020 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86', 1020 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x 86',
1021 }], 1021 }],
1022 1022
1023 ['sysroot!=""', { 1023 ['sysroot!=""', {
1024 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper " <(sysroot)" "<(target_arch)" "<(system_libdir)"', 1024 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper " <(sysroot)" "<(target_arch)" "<(system_libdir)"',
1025 }, { 1025 }, {
1026 'pkg-config': 'pkg-config' 1026 'pkg-config': 'pkg-config'
1027 }], 1027 }],
1028
1029 # Enable WebVR support by default on Android
1030 # Still requires command line flag to access API
1031 ['OS=="android"', {
1032 'enable_webvr%': 1,
1033 }, {
1034 'enable_webvr%': 0,
1035 }],
1028 ], 1036 ],
1029 1037
1030 # WebVR support disabled until platform implementations have been added
1031 'enable_webvr%': 0,
1032
1033 # Setting this to '0' will cause V8's startup snapshot to be 1038 # Setting this to '0' will cause V8's startup snapshot to be
1034 # embedded in the binary instead of being a external files. 1039 # embedded in the binary instead of being a external files.
1035 'v8_use_external_startup_data%': 1, 1040 'v8_use_external_startup_data%': 1,
1036 1041
1037 # Set this to 1 to enable use of concatenated impulse responses 1042 # Set this to 1 to enable use of concatenated impulse responses
1038 # for the HRTF panner in WebAudio. 1043 # for the HRTF panner in WebAudio.
1039 'use_concatenated_impulse_responses': 1, 1044 'use_concatenated_impulse_responses': 1,
1040 1045
1041 # You can set the variable 'use_official_google_api_keys' to 1 1046 # You can set the variable 'use_official_google_api_keys' to 1
1042 # to use the Google-internal file containing official API keys 1047 # to use the Google-internal file containing official API keys
(...skipping 5205 matching lines...) Expand 10 before | Expand all | Expand 10 after
6248 # settings in target dicts. SYMROOT is a special case, because many other 6253 # settings in target dicts. SYMROOT is a special case, because many other
6249 # Xcode variables depend on it, including variables such as 6254 # Xcode variables depend on it, including variables such as
6250 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6255 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6251 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6256 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6252 # files to appear (when present) in the UI as actual files and not red 6257 # files to appear (when present) in the UI as actual files and not red
6253 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6258 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6254 # and therefore SYMROOT, needs to be set at the project level. 6259 # and therefore SYMROOT, needs to be set at the project level.
6255 'SYMROOT': '<(DEPTH)/xcodebuild', 6260 'SYMROOT': '<(DEPTH)/xcodebuild',
6256 }, 6261 },
6257 } 6262 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | content/browser/vr/android/cardboard/cardboard_vr_device.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698