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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1406 # Whether we are using the rlz library or not. Platforms like Android send | 1406 # Whether we are using the rlz library or not. Platforms like Android send |
1407 # rlz codes for searches but do not use the library. | 1407 # rlz codes for searches but do not use the library. |
1408 'enable_rlz%': 0, | 1408 'enable_rlz%': 0, |
1409 | 1409 |
1410 # Turns on the i18n support in V8. | 1410 # Turns on the i18n support in V8. |
1411 'v8_enable_i18n_support': 1, | 1411 'v8_enable_i18n_support': 1, |
1412 | 1412 |
1413 # Compile d8 for the host toolset. | 1413 # Compile d8 for the host toolset. |
1414 'v8_toolset_for_d8': 'host', | 1414 'v8_toolset_for_d8': 'host', |
1415 | 1415 |
1416 # Compiles v8 without its platform library. | |
1417 'v8_use_default_platform': 0, | |
1418 | |
1419 # Use the chromium skia by default. | 1416 # Use the chromium skia by default. |
1420 'use_system_skia%': '0', | 1417 'use_system_skia%': '0', |
1421 | 1418 |
1422 # Use brlapi from brltty for braille display support. | 1419 # Use brlapi from brltty for braille display support. |
1423 'use_brlapi%': 0, | 1420 'use_brlapi%': 0, |
1424 | 1421 |
1425 # Relative path to icu.gyp from this file. | 1422 # Relative path to icu.gyp from this file. |
1426 'icu_gyp_path': '../third_party/icu/icu.gyp', | 1423 'icu_gyp_path': '../third_party/icu/icu.gyp', |
1427 | 1424 |
1428 # IPC fuzzer is disabled by default. | 1425 # IPC fuzzer is disabled by default. |
(...skipping 4225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5654 # settings in target dicts. SYMROOT is a special case, because many other | 5651 # settings in target dicts. SYMROOT is a special case, because many other |
5655 # Xcode variables depend on it, including variables such as | 5652 # Xcode variables depend on it, including variables such as |
5656 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5653 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5657 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5654 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5658 # files to appear (when present) in the UI as actual files and not red | 5655 # files to appear (when present) in the UI as actual files and not red |
5659 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5656 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5660 # and therefore SYMROOT, needs to be set at the project level. | 5657 # and therefore SYMROOT, needs to be set at the project level. |
5661 'SYMROOT': '<(DEPTH)/xcodebuild', | 5658 'SYMROOT': '<(DEPTH)/xcodebuild', |
5662 }, | 5659 }, |
5663 } | 5660 } |
OLD | NEW |