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 2217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2228 # Use test as the default platform. | 2228 # Use test as the default platform. |
2229 'ozone_platform%': 'test', | 2229 'ozone_platform%': 'test', |
2230 | 2230 |
2231 # Build all platforms whose deps are in install-build-deps.sh. | 2231 # Build all platforms whose deps are in install-build-deps.sh. |
2232 # Only these platforms will be compile tested by buildbots. | 2232 # Only these platforms will be compile tested by buildbots. |
2233 'ozone_platform_dri%': 1, | 2233 'ozone_platform_dri%': 1, |
2234 'ozone_platform_test%': 1, | 2234 'ozone_platform_test%': 1, |
2235 'ozone_platform_egltest%': 1, | 2235 'ozone_platform_egltest%': 1, |
2236 }], | 2236 }], |
2237 | 2237 |
2238 ['use_ozone==1 and ozone_auto_platforms==1 and chromeos==1', { | |
2239 # Use dri as the default platform. | |
2240 'ozone_platform%': 'dri', | |
2241 }], | |
2242 | |
2243 ['desktop_linux==1 and use_aura==1 and use_x11==1', { | 2238 ['desktop_linux==1 and use_aura==1 and use_x11==1', { |
2244 'use_clipboard_aurax11%': 1, | 2239 'use_clipboard_aurax11%': 1, |
2245 }], | 2240 }], |
2246 | 2241 |
2247 ['OS=="win" and use_goma==1', { | 2242 ['OS=="win" and use_goma==1', { |
2248 # goma doesn't support pch yet. | 2243 # goma doesn't support pch yet. |
2249 'chromium_win_pch': 0, | 2244 'chromium_win_pch': 0, |
2250 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. | 2245 # goma doesn't support PDB yet, so win_z7=1 or fastbuild=1. |
2251 'conditions': [ | 2246 'conditions': [ |
2252 ['win_z7==0', { | 2247 ['win_z7==0', { |
(...skipping 3364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5617 # settings in target dicts. SYMROOT is a special case, because many other | 5612 # settings in target dicts. SYMROOT is a special case, because many other |
5618 # Xcode variables depend on it, including variables such as | 5613 # Xcode variables depend on it, including variables such as |
5619 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 5614 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
5620 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 5615 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
5621 # files to appear (when present) in the UI as actual files and not red | 5616 # files to appear (when present) in the UI as actual files and not red |
5622 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 5617 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
5623 # and therefore SYMROOT, needs to be set at the project level. | 5618 # and therefore SYMROOT, needs to be set at the project level. |
5624 'SYMROOT': '<(DEPTH)/xcodebuild', | 5619 'SYMROOT': '<(DEPTH)/xcodebuild', |
5625 }, | 5620 }, |
5626 } | 5621 } |
OLD | NEW |