| 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 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1316 # Whether we are using the rlz library or not. Platforms like Android send | 1316 # Whether we are using the rlz library or not. Platforms like Android send |
| 1317 # rlz codes for searches but do not use the library. | 1317 # rlz codes for searches but do not use the library. |
| 1318 'enable_rlz%': 0, | 1318 'enable_rlz%': 0, |
| 1319 | 1319 |
| 1320 # Turns on the i18n support in V8. | 1320 # Turns on the i18n support in V8. |
| 1321 'v8_enable_i18n_support': 1, | 1321 'v8_enable_i18n_support': 1, |
| 1322 | 1322 |
| 1323 # Compile d8 for the host toolset. | 1323 # Compile d8 for the host toolset. |
| 1324 'v8_toolset_for_d8': 'host', | 1324 'v8_toolset_for_d8': 'host', |
| 1325 | 1325 |
| 1326 # Compiles v8 without its platform library. |
| 1327 'v8_use_default_platform': 0, |
| 1328 |
| 1326 # Use the chromium skia by default. | 1329 # Use the chromium skia by default. |
| 1327 'use_system_skia%': '0', | 1330 'use_system_skia%': '0', |
| 1328 | 1331 |
| 1329 # Use brlapi from brltty for braille display support. | 1332 # Use brlapi from brltty for braille display support. |
| 1330 'use_brlapi%': 0, | 1333 'use_brlapi%': 0, |
| 1331 | 1334 |
| 1332 # Relative path to icu.gyp from this file. | 1335 # Relative path to icu.gyp from this file. |
| 1333 'icu_gyp_path': '../third_party/icu/icu.gyp', | 1336 'icu_gyp_path': '../third_party/icu/icu.gyp', |
| 1334 | 1337 |
| 1335 # IPC fuzzer is disabled by default. | 1338 # IPC fuzzer is disabled by default. |
| (...skipping 3880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5216 # settings in target dicts. SYMROOT is a special case, because many other | 5219 # settings in target dicts. SYMROOT is a special case, because many other |
| 5217 # Xcode variables depend on it, including variables such as | 5220 # Xcode variables depend on it, including variables such as |
| 5218 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5221 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5219 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5222 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5220 # files to appear (when present) in the UI as actual files and not red | 5223 # files to appear (when present) in the UI as actual files and not red |
| 5221 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5224 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5222 # and therefore SYMROOT, needs to be set at the project level. | 5225 # and therefore SYMROOT, needs to be set at the project level. |
| 5223 'SYMROOT': '<(DEPTH)/xcodebuild', | 5226 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5224 }, | 5227 }, |
| 5225 } | 5228 } |
| OLD | NEW |