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 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', | 1235 'windows_sdk_default_path': '<(DEPTH)/third_party/platformsdk_win8/files', |
1236 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', | 1236 'directx_sdk_default_path': '<(DEPTH)/third_party/directxsdk/files', |
1237 | 1237 |
1238 # Whether we are using the rlz library or not. Platforms like Android send | 1238 # Whether we are using the rlz library or not. Platforms like Android send |
1239 # rlz codes for searches but do not use the library. | 1239 # rlz codes for searches but do not use the library. |
1240 'enable_rlz%': 0, | 1240 'enable_rlz%': 0, |
1241 | 1241 |
1242 # Turns on the i18n support in V8. | 1242 # Turns on the i18n support in V8. |
1243 'v8_enable_i18n_support': 1, | 1243 'v8_enable_i18n_support': 1, |
1244 | 1244 |
| 1245 # Compile d8 for the host toolset. |
| 1246 'v8_toolset_for_d8': 'host', |
| 1247 |
1245 # Use the chromium skia by default. | 1248 # Use the chromium skia by default. |
1246 'use_system_skia%': '0', | 1249 'use_system_skia%': '0', |
1247 | 1250 |
1248 # Use brlapi from brltty for braille display support. | 1251 # Use brlapi from brltty for braille display support. |
1249 'use_brlapi%': 0, | 1252 'use_brlapi%': 0, |
1250 | 1253 |
1251 # Relative path to icu.gyp from this file. | 1254 # Relative path to icu.gyp from this file. |
1252 'icu_gyp_path': '../third_party/icu/icu.gyp', | 1255 'icu_gyp_path': '../third_party/icu/icu.gyp', |
1253 | 1256 |
1254 # IPC fuzzer is disabled by default. | 1257 # IPC fuzzer is disabled by default. |
(...skipping 3583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4838 # settings in target dicts. SYMROOT is a special case, because many other | 4841 # settings in target dicts. SYMROOT is a special case, because many other |
4839 # Xcode variables depend on it, including variables such as | 4842 # Xcode variables depend on it, including variables such as |
4840 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 4843 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
4841 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 4844 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
4842 # files to appear (when present) in the UI as actual files and not red | 4845 # files to appear (when present) in the UI as actual files and not red |
4843 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 4846 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
4844 # and therefore SYMROOT, needs to be set at the project level. | 4847 # and therefore SYMROOT, needs to be set at the project level. |
4845 'SYMROOT': '<(DEPTH)/xcodebuild', | 4848 'SYMROOT': '<(DEPTH)/xcodebuild', |
4846 }, | 4849 }, |
4847 } | 4850 } |
OLD | NEW |