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