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 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1496 'ozone_platform%': "", | 1496 'ozone_platform%': "", |
1497 | 1497 |
1498 # Ozone platforms to include in the build. | 1498 # Ozone platforms to include in the build. |
1499 'ozone_platform_caca%': 0, | 1499 'ozone_platform_caca%': 0, |
1500 'ozone_platform_dri%': 0, | 1500 'ozone_platform_dri%': 0, |
1501 'ozone_platform_egltest%': 0, | 1501 'ozone_platform_egltest%': 0, |
1502 'ozone_platform_gbm%': 0, | 1502 'ozone_platform_gbm%': 0, |
1503 'ozone_platform_ozonex%': 0, | 1503 'ozone_platform_ozonex%': 0, |
1504 'ozone_platform_test%': 0, | 1504 'ozone_platform_test%': 0, |
1505 | 1505 |
| 1506 # Whether the browser is non-native (using Views Toolkit) on Mac. |
| 1507 'mac_views_browser%': 0, |
| 1508 |
1506 'conditions': [ | 1509 'conditions': [ |
1507 ['buildtype=="Official"', { | 1510 ['buildtype=="Official"', { |
1508 # Continue to embed build meta data in Official builds, basically the | 1511 # Continue to embed build meta data in Official builds, basically the |
1509 # time it was built. | 1512 # time it was built. |
1510 # TODO(maruel): This decision should be revisited because having an | 1513 # TODO(maruel): This decision should be revisited because having an |
1511 # official deterministic build has high value too but MSVC toolset can't | 1514 # official deterministic build has high value too but MSVC toolset can't |
1512 # generate anything deterministic with WPO enabled AFAIK. | 1515 # generate anything deterministic with WPO enabled AFAIK. |
1513 'dont_embed_build_metadata%': 0, | 1516 'dont_embed_build_metadata%': 0, |
1514 }], | 1517 }], |
1515 # Enable the Syzygy optimization step for the official builds. | 1518 # Enable the Syzygy optimization step for the official builds. |
(...skipping 4376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5892 # settings in target dicts. SYMROOT is a special case, because many other | 5895 # settings in target dicts. SYMROOT is a special case, because many other |
5893 # Xcode variables depend on it, including variables such as | 5896 # Xcode variables depend on it, including variables such as |
5894 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5897 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5895 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5898 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5896 # files to appear (when present) in the UI as actual files and not red | 5899 # files to appear (when present) in the UI as actual files and not red |
5897 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5900 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5898 # and therefore SYMROOT, needs to be set at the project level. | 5901 # and therefore SYMROOT, needs to be set at the project level. |
5899 'SYMROOT': '<(DEPTH)/xcodebuild', | 5902 'SYMROOT': '<(DEPTH)/xcodebuild', |
5900 }, | 5903 }, |
5901 } | 5904 } |
OLD | NEW |