Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: build/common.gypi

Issue 2167243002: Delete Ozone egltest platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after
1556 1556
1557 # Support ChromeOS touchpad gestures with ozone. 1557 # Support ChromeOS touchpad gestures with ozone.
1558 'use_evdev_gestures%': 0, 1558 'use_evdev_gestures%': 0,
1559 1559
1560 # Default ozone platform (if no --ozone-platform flag). 1560 # Default ozone platform (if no --ozone-platform flag).
1561 'ozone_platform%': "", 1561 'ozone_platform%': "",
1562 1562
1563 # Ozone platforms to include in the build. 1563 # Ozone platforms to include in the build.
1564 'ozone_platform_caca%': 0, 1564 'ozone_platform_caca%': 0,
1565 'ozone_platform_cast%': 0, 1565 'ozone_platform_cast%': 0,
1566 'ozone_platform_egltest%': 0,
1567 'ozone_platform_gbm%': 0, 1566 'ozone_platform_gbm%': 0,
1568 'ozone_platform_ozonex%': 0,
1569 'ozone_platform_headless%': 0, 1567 'ozone_platform_headless%': 0,
1570 'ozone_platform_wayland%': 0, 1568 'ozone_platform_wayland%': 0,
1571 1569
1572 # Experiment: http://crbug.com/426914 1570 # Experiment: http://crbug.com/426914
1573 'envoy%': 0, 1571 'envoy%': 0,
1574 1572
1575 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path 1573 # Used to set libjpeg_gyp_path. Chrome OS ui/gfx/gfx.gyp uses the IJG path
1576 # for robust login screen decoding. 1574 # for robust login screen decoding.
1577 'libjpeg_ijg_gyp_path': '<(DEPTH)/third_party/libjpeg/libjpeg.gyp', 1575 'libjpeg_ijg_gyp_path': '<(DEPTH)/third_party/libjpeg/libjpeg.gyp',
1578 'libjpeg_turbo_gyp_path': '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp', 1576 'libjpeg_turbo_gyp_path': '<(DEPTH)/third_party/libjpeg_turbo/libjpeg.gyp',
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
2350 2348
2351 ['use_ozone==1 and ozone_auto_platforms==1', { 2349 ['use_ozone==1 and ozone_auto_platforms==1', {
2352 # Use headless as the default platform. 2350 # Use headless as the default platform.
2353 'ozone_platform%': 'headless', 2351 'ozone_platform%': 'headless',
2354 'ozone_platform_headless%': 1, 2352 'ozone_platform_headless%': 1,
2355 'conditions': [ 2353 'conditions': [
2356 ['chromecast==1', { 2354 ['chromecast==1', {
2357 'ozone_platform_cast%': 1, 2355 'ozone_platform_cast%': 1,
2358 'conditions': [ 2356 'conditions': [
2359 # For desktop non-audio Chromecast builds, run with 2357 # For desktop non-audio Chromecast builds, run with
2360 # --ozone-platform=egltest 2358 # --ozone-platform=x11
2361 # TODO(slan|halliwell): Make the default platform "cast" on 2359 # TODO(slan|halliwell): Make the default platform "cast" on
2362 # desktop non-audio builds too. 2360 # desktop non-audio builds too.
2363 ['is_cast_desktop_build==1 and disable_display==0', { 2361 ['is_cast_desktop_build==1 and disable_display==0', {
2364 'ozone_platform_egltest%': 1, 2362 # Use GN instead.
2365 'ozone_platform_ozonex%': 1,
2366 }, { 2363 }, {
2367 'ozone_platform%': 'cast', 2364 'ozone_platform%': 'cast',
2368 }], 2365 }],
2369 ], 2366 ],
2370 }, { # chromecast!=1 2367 }, { # chromecast!=1
2371 # Build all platforms whose deps are in install-build-deps.sh. 2368 # Build all platforms whose deps are in install-build-deps.sh.
2372 # Only these platforms will be compile tested by buildbots. 2369 # Only these platforms will be compile tested by buildbots.
2373 'ozone_platform_egltest%': 1,
2374 'conditions': [ 2370 'conditions': [
2375 ['chromeos==1', { 2371 ['chromeos==1', {
2376 'ozone_platform_gbm%': 1, 2372 'ozone_platform_gbm%': 1,
2377 }], 2373 }],
2378 ], 2374 ],
2379 }], 2375 }],
2380 ], 2376 ],
2381 }], 2377 }],
2382 2378
2383 ['desktop_linux==1 and use_aura==1 and use_x11==1', { 2379 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
(...skipping 3957 matching lines...) Expand 10 before | Expand all | Expand 10 after
6341 # settings in target dicts. SYMROOT is a special case, because many other 6337 # settings in target dicts. SYMROOT is a special case, because many other
6342 # Xcode variables depend on it, including variables such as 6338 # Xcode variables depend on it, including variables such as
6343 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6339 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6344 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6340 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6345 # files to appear (when present) in the UI as actual files and not red 6341 # files to appear (when present) in the UI as actual files and not red
6346 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6342 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6347 # and therefore SYMROOT, needs to be set at the project level. 6343 # and therefore SYMROOT, needs to be set at the project level.
6348 'SYMROOT': '<(DEPTH)/xcodebuild', 6344 'SYMROOT': '<(DEPTH)/xcodebuild',
6349 }, 6345 },
6350 } 6346 }
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698