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 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1388 # Default ozone platform (if no --ozone-platform flag). | 1388 # Default ozone platform (if no --ozone-platform flag). |
1389 'ozone_platform%': "", | 1389 'ozone_platform%': "", |
1390 | 1390 |
1391 # Ozone platforms to include in the build. | 1391 # Ozone platforms to include in the build. |
1392 'ozone_platform_caca%': 0, | 1392 'ozone_platform_caca%': 0, |
1393 'ozone_platform_dri%': 0, | 1393 'ozone_platform_dri%': 0, |
1394 'ozone_platform_egltest%': 0, | 1394 'ozone_platform_egltest%': 0, |
1395 'ozone_platform_ozonex%': 0, | 1395 'ozone_platform_ozonex%': 0, |
1396 'ozone_platform_test%': 0, | 1396 'ozone_platform_test%': 0, |
1397 | 1397 |
| 1398 # Chrome OS: whether to build ChromeVox from sources in the Chromium |
| 1399 # repository rather than using precompiled JavaScript in |
| 1400 # chrome/third_party/chromevox. This is still experimental. |
| 1401 'use_migrated_chromevox%': 0, |
| 1402 |
1398 # Chrome OS: whether to also build the upcoming version of | 1403 # Chrome OS: whether to also build the upcoming version of |
1399 # ChromeVox, which can then be enabled via a command-line switch. | 1404 # ChromeVox, which can then be enabled via a command-line switch. |
1400 'use_chromevox_next%': 0, | 1405 'use_chromevox_next%': 0, |
1401 | 1406 |
1402 'conditions': [ | 1407 'conditions': [ |
1403 # Enable the Syzygy optimization step for the official builds. | 1408 # Enable the Syzygy optimization step for the official builds. |
1404 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { | 1409 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { |
1405 'syzygy_optimize%': 1, | 1410 'syzygy_optimize%': 1, |
1406 }, { | 1411 }, { |
1407 'syzygy_optimize%': 0, | 1412 'syzygy_optimize%': 0, |
(...skipping 3921 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5329 # settings in target dicts. SYMROOT is a special case, because many other | 5334 # settings in target dicts. SYMROOT is a special case, because many other |
5330 # Xcode variables depend on it, including variables such as | 5335 # Xcode variables depend on it, including variables such as |
5331 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5336 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5332 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5337 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5333 # files to appear (when present) in the UI as actual files and not red | 5338 # files to appear (when present) in the UI as actual files and not red |
5334 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5339 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5335 # and therefore SYMROOT, needs to be set at the project level. | 5340 # and therefore SYMROOT, needs to be set at the project level. |
5336 'SYMROOT': '<(DEPTH)/xcodebuild', | 5341 'SYMROOT': '<(DEPTH)/xcodebuild', |
5337 }, | 5342 }, |
5338 } | 5343 } |
OLD | NEW |