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 1500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 | 1511 |
1512 # Support ChromeOS touchpad gestures with ozone. | 1512 # Support ChromeOS touchpad gestures with ozone. |
1513 'use_evdev_gestures%': 0, | 1513 'use_evdev_gestures%': 0, |
1514 | 1514 |
1515 # Default ozone platform (if no --ozone-platform flag). | 1515 # Default ozone platform (if no --ozone-platform flag). |
1516 'ozone_platform%': "", | 1516 'ozone_platform%': "", |
1517 | 1517 |
1518 # Ozone platforms to include in the build. | 1518 # Ozone platforms to include in the build. |
1519 'ozone_platform_caca%': 0, | 1519 'ozone_platform_caca%': 0, |
1520 'ozone_platform_cast%': 0, | 1520 'ozone_platform_cast%': 0, |
1521 'ozone_platform_dri%': 0, | |
1522 'ozone_platform_drm%': 0, | 1521 'ozone_platform_drm%': 0, |
1523 'ozone_platform_egltest%': 0, | 1522 'ozone_platform_egltest%': 0, |
1524 'ozone_platform_gbm%': 0, | 1523 'ozone_platform_gbm%': 0, |
1525 'ozone_platform_ozonex%': 0, | 1524 'ozone_platform_ozonex%': 0, |
1526 'ozone_platform_test%': 0, | 1525 'ozone_platform_test%': 0, |
1527 | 1526 |
1528 # Experiment: http://crbug.com/426914 | 1527 # Experiment: http://crbug.com/426914 |
1529 'envoy%': 0, | 1528 'envoy%': 0, |
1530 | 1529 |
1531 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path | 1530 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path |
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2367 [ 'chromeos==1', { | 2366 [ 'chromeos==1', { |
2368 'use_brlapi%': 1, | 2367 'use_brlapi%': 1, |
2369 }], | 2368 }], |
2370 | 2369 |
2371 ['use_ozone==1 and ozone_auto_platforms==1', { | 2370 ['use_ozone==1 and ozone_auto_platforms==1', { |
2372 # Use test as the default platform. | 2371 # Use test as the default platform. |
2373 'ozone_platform%': 'test', | 2372 'ozone_platform%': 'test', |
2374 | 2373 |
2375 # Build all platforms whose deps are in install-build-deps.sh. | 2374 # Build all platforms whose deps are in install-build-deps.sh. |
2376 # Only these platforms will be compile tested by buildbots. | 2375 # Only these platforms will be compile tested by buildbots. |
2377 'ozone_platform_dri%': 1, | |
2378 'ozone_platform_drm%': 1, | 2376 'ozone_platform_drm%': 1, |
2379 'ozone_platform_test%': 1, | 2377 'ozone_platform_test%': 1, |
2380 'ozone_platform_egltest%': 1, | 2378 'ozone_platform_egltest%': 1, |
2381 }], | 2379 }], |
2382 | 2380 |
2383 ['desktop_linux==1 and use_aura==1 and use_x11==1', { | 2381 ['desktop_linux==1 and use_aura==1 and use_x11==1', { |
2384 'use_clipboard_aurax11%': 1, | 2382 'use_clipboard_aurax11%': 1, |
2385 }], | 2383 }], |
2386 | 2384 |
2387 ['OS=="win" and use_goma==1', { | 2385 ['OS=="win" and use_goma==1', { |
(...skipping 3818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6206 # settings in target dicts. SYMROOT is a special case, because many other | 6204 # settings in target dicts. SYMROOT is a special case, because many other |
6207 # Xcode variables depend on it, including variables such as | 6205 # Xcode variables depend on it, including variables such as |
6208 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6206 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6209 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6207 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6210 # files to appear (when present) in the UI as actual files and not red | 6208 # files to appear (when present) in the UI as actual files and not red |
6211 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6209 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6212 # and therefore SYMROOT, needs to be set at the project level. | 6210 # and therefore SYMROOT, needs to be set at the project level. |
6213 'SYMROOT': '<(DEPTH)/xcodebuild', | 6211 'SYMROOT': '<(DEPTH)/xcodebuild', |
6214 }, | 6212 }, |
6215 } | 6213 } |
OLD | NEW |