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