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 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1377 # Default ozone platform (if no --ozone-platform flag). | 1377 # Default ozone platform (if no --ozone-platform flag). |
1378 'ozone_platform%': "", | 1378 'ozone_platform%': "", |
1379 | 1379 |
1380 # Ozone platforms to include in the build. | 1380 # Ozone platforms to include in the build. |
1381 'ozone_platform_caca%': 0, | 1381 'ozone_platform_caca%': 0, |
1382 'ozone_platform_dri%': 0, | 1382 'ozone_platform_dri%': 0, |
1383 'ozone_platform_egltest%': 0, | 1383 'ozone_platform_egltest%': 0, |
1384 'ozone_platform_ozonex%': 0, | 1384 'ozone_platform_ozonex%': 0, |
1385 'ozone_platform_test%': 0, | 1385 'ozone_platform_test%': 0, |
1386 | 1386 |
| 1387 # Chrome OS: whether to build ChromeVox from sources in the Chromium |
| 1388 # repository rather than using precompiled JavaScript in |
| 1389 # chrome/third_party/chromevox. This is still experimental. |
| 1390 'use_migrated_chromevox%': 0, |
| 1391 |
1387 # Chrome OS: whether to also build the upcoming version of | 1392 # Chrome OS: whether to also build the upcoming version of |
1388 # ChromeVox, which can then be enabled via a command-line switch. | 1393 # ChromeVox, which can then be enabled via a command-line switch. |
1389 'use_chromevox_next%': 0, | 1394 'use_chromevox_next%': 0, |
1390 | 1395 |
1391 'conditions': [ | 1396 'conditions': [ |
1392 # Enable the Syzygy optimization step for the official builds. | 1397 # Enable the Syzygy optimization step for the official builds. |
1393 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { | 1398 ['OS=="win" and buildtype=="Official" and syzyasan!=1', { |
1394 'syzygy_optimize%': 1, | 1399 'syzygy_optimize%': 1, |
1395 }, { | 1400 }, { |
1396 'syzygy_optimize%': 0, | 1401 'syzygy_optimize%': 0, |
(...skipping 3917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5314 # settings in target dicts. SYMROOT is a special case, because many other | 5319 # settings in target dicts. SYMROOT is a special case, because many other |
5315 # Xcode variables depend on it, including variables such as | 5320 # Xcode variables depend on it, including variables such as |
5316 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5321 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5317 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5322 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5318 # files to appear (when present) in the UI as actual files and not red | 5323 # files to appear (when present) in the UI as actual files and not red |
5319 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5324 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5320 # and therefore SYMROOT, needs to be set at the project level. | 5325 # and therefore SYMROOT, needs to be set at the project level. |
5321 'SYMROOT': '<(DEPTH)/xcodebuild', | 5326 'SYMROOT': '<(DEPTH)/xcodebuild', |
5322 }, | 5327 }, |
5323 } | 5328 } |
OLD | NEW |