OLD | NEW |
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 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a
md64', | 1017 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/a
md64', |
1018 }, { | 1018 }, { |
1019 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x
86', | 1019 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x
86', |
1020 }], | 1020 }], |
1021 | 1021 |
1022 ['sysroot!=""', { | 1022 ['sysroot!=""', { |
1023 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper "
<(sysroot)" "<(target_arch)" "<(system_libdir)"', | 1023 'pkg-config': '<(chroot_cmd) <(DEPTH)/build/linux/pkg-config-wrapper "
<(sysroot)" "<(target_arch)" "<(system_libdir)"', |
1024 }, { | 1024 }, { |
1025 'pkg-config': 'pkg-config' | 1025 'pkg-config': 'pkg-config' |
1026 }], | 1026 }], |
| 1027 |
| 1028 # Enable WebVR support by default on Android |
| 1029 # Still requires command line flag to access API |
| 1030 ['OS=="android"', { |
| 1031 'enable_webvr%': 1, |
| 1032 }, { |
| 1033 'enable_webvr%': 0, |
| 1034 }], |
1027 ], | 1035 ], |
1028 | 1036 |
1029 # WebVR support disabled until platform implementations have been added | |
1030 'enable_webvr%': 0, | |
1031 | |
1032 # Setting this to '0' will cause V8's startup snapshot to be | 1037 # Setting this to '0' will cause V8's startup snapshot to be |
1033 # embedded in the binary instead of being a external files. | 1038 # embedded in the binary instead of being a external files. |
1034 'v8_use_external_startup_data%': 1, | 1039 'v8_use_external_startup_data%': 1, |
1035 | 1040 |
1036 # Set this to 1 to enable use of concatenated impulse responses | 1041 # Set this to 1 to enable use of concatenated impulse responses |
1037 # for the HRTF panner in WebAudio. | 1042 # for the HRTF panner in WebAudio. |
1038 'use_concatenated_impulse_responses': 1, | 1043 'use_concatenated_impulse_responses': 1, |
1039 | 1044 |
1040 # You can set the variable 'use_official_google_api_keys' to 1 | 1045 # You can set the variable 'use_official_google_api_keys' to 1 |
1041 # to use the Google-internal file containing official API keys | 1046 # to use the Google-internal file containing official API keys |
(...skipping 5203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6245 # settings in target dicts. SYMROOT is a special case, because many other | 6250 # settings in target dicts. SYMROOT is a special case, because many other |
6246 # Xcode variables depend on it, including variables such as | 6251 # Xcode variables depend on it, including variables such as |
6247 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6252 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6248 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6253 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6249 # files to appear (when present) in the UI as actual files and not red | 6254 # files to appear (when present) in the UI as actual files and not red |
6250 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6255 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6251 # and therefore SYMROOT, needs to be set at the project level. | 6256 # and therefore SYMROOT, needs to be set at the project level. |
6252 'SYMROOT': '<(DEPTH)/xcodebuild', | 6257 'SYMROOT': '<(DEPTH)/xcodebuild', |
6253 }, | 6258 }, |
6254 } | 6259 } |
OLD | NEW |