| 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 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 'ozone_platform_caca%': 0, | 1423 'ozone_platform_caca%': 0, |
| 1424 'ozone_platform_dri%': 0, | 1424 'ozone_platform_dri%': 0, |
| 1425 'ozone_platform_egltest%': 0, | 1425 'ozone_platform_egltest%': 0, |
| 1426 'ozone_platform_gbm%': 0, | 1426 'ozone_platform_gbm%': 0, |
| 1427 'ozone_platform_ozonex%': 0, | 1427 'ozone_platform_ozonex%': 0, |
| 1428 'ozone_platform_test%': 0, | 1428 'ozone_platform_test%': 0, |
| 1429 | 1429 |
| 1430 # Chrome OS: whether to build ChromeVox from sources in the Chromium | 1430 # Chrome OS: whether to build ChromeVox from sources in the Chromium |
| 1431 # repository rather than using precompiled JavaScript in | 1431 # repository rather than using precompiled JavaScript in |
| 1432 # chrome/third_party/chromevox. This is still experimental. | 1432 # chrome/third_party/chromevox. This is still experimental. |
| 1433 'use_migrated_chromevox%': 0, | 1433 'use_migrated_chromevox%': 1, |
| 1434 | 1434 |
| 1435 # Chrome OS: whether to also build the upcoming version of | 1435 # Chrome OS: whether to also build the upcoming version of |
| 1436 # ChromeVox, which can then be enabled via a command-line switch. | 1436 # ChromeVox, which can then be enabled via a command-line switch. |
| 1437 'use_chromevox_next%': 0, | 1437 'use_chromevox_next%': 0, |
| 1438 | 1438 |
| 1439 'conditions': [ | 1439 'conditions': [ |
| 1440 # Enable the Syzygy optimization step for the official builds. | 1440 # Enable the Syzygy optimization step for the official builds. |
| 1441 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { | 1441 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { |
| 1442 'syzygy_optimize%': 1, | 1442 'syzygy_optimize%': 1, |
| 1443 }, { | 1443 }, { |
| (...skipping 4021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5465 # settings in target dicts. SYMROOT is a special case, because many other | 5465 # settings in target dicts. SYMROOT is a special case, because many other |
| 5466 # Xcode variables depend on it, including variables such as | 5466 # Xcode variables depend on it, including variables such as |
| 5467 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5467 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 5468 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5468 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 5469 # files to appear (when present) in the UI as actual files and not red | 5469 # files to appear (when present) in the UI as actual files and not red |
| 5470 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5470 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 5471 # and therefore SYMROOT, needs to be set at the project level. | 5471 # and therefore SYMROOT, needs to be set at the project level. |
| 5472 'SYMROOT': '<(DEPTH)/xcodebuild', | 5472 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 5473 }, | 5473 }, |
| 5474 } | 5474 } |
| OLD | NEW |