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

Side by Side Diff: build/common.gypi

Issue 957253005: [Ozone] Update GYP and GN to include a DRM platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-host-gpu
Patch Set: fix media Created 5 years, 9 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/filename_rules.gypi » ('j') | ui/ozone/BUILD.gn » ('J')
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 1481 matching lines...) Expand 10 before | Expand all | Expand 10 after
1492 1492
1493 # Support ChromeOS touchpad gestures with ozone. 1493 # Support ChromeOS touchpad gestures with ozone.
1494 'use_evdev_gestures%': 0, 1494 'use_evdev_gestures%': 0,
1495 1495
1496 # Default ozone platform (if no --ozone-platform flag). 1496 # Default ozone platform (if no --ozone-platform flag).
1497 'ozone_platform%': "", 1497 'ozone_platform%': "",
1498 1498
1499 # Ozone platforms to include in the build. 1499 # Ozone platforms to include in the build.
1500 'ozone_platform_caca%': 0, 1500 'ozone_platform_caca%': 0,
1501 'ozone_platform_dri%': 0, 1501 'ozone_platform_dri%': 0,
1502 'ozone_platform_drm%': 0,
1502 'ozone_platform_egltest%': 0, 1503 'ozone_platform_egltest%': 0,
1503 'ozone_platform_gbm%': 0, 1504 'ozone_platform_gbm%': 0,
1504 'ozone_platform_ozonex%': 0, 1505 'ozone_platform_ozonex%': 0,
1505 'ozone_platform_test%': 0, 1506 'ozone_platform_test%': 0,
1506 1507
1507 # Whether the browser is non-native (using Views Toolkit) on Mac. 1508 # Whether the browser is non-native (using Views Toolkit) on Mac.
1508 'mac_views_browser%': 0, 1509 'mac_views_browser%': 0,
1509 1510
1510 # Experiment: http://crbug.com/426914 1511 # Experiment: http://crbug.com/426914
1511 'envoy%': 0, 1512 'envoy%': 0,
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
2327 'use_brlapi%': 1, 2328 'use_brlapi%': 1,
2328 }], 2329 }],
2329 2330
2330 ['use_ozone==1 and ozone_auto_platforms==1', { 2331 ['use_ozone==1 and ozone_auto_platforms==1', {
2331 # Use test as the default platform. 2332 # Use test as the default platform.
2332 'ozone_platform%': 'test', 2333 'ozone_platform%': 'test',
2333 2334
2334 # Build all platforms whose deps are in install-build-deps.sh. 2335 # Build all platforms whose deps are in install-build-deps.sh.
2335 # Only these platforms will be compile tested by buildbots. 2336 # Only these platforms will be compile tested by buildbots.
2336 'ozone_platform_dri%': 1, 2337 'ozone_platform_dri%': 1,
2338 'ozone_platform_drm%': 1,
2337 'ozone_platform_test%': 1, 2339 'ozone_platform_test%': 1,
2338 'ozone_platform_egltest%': 1, 2340 'ozone_platform_egltest%': 1,
2339 }], 2341 }],
2340 2342
2341 ['desktop_linux==1 and use_aura==1 and use_x11==1', { 2343 ['desktop_linux==1 and use_aura==1 and use_x11==1', {
2342 'use_clipboard_aurax11%': 1, 2344 'use_clipboard_aurax11%': 1,
2343 }], 2345 }],
2344 2346
2345 ['OS=="win" and use_goma==1', { 2347 ['OS=="win" and use_goma==1', {
2346 # goma doesn't support pch yet. 2348 # goma doesn't support pch yet.
(...skipping 3633 matching lines...) Expand 10 before | Expand all | Expand 10 after
5980 # settings in target dicts. SYMROOT is a special case, because many other 5982 # settings in target dicts. SYMROOT is a special case, because many other
5981 # Xcode variables depend on it, including variables such as 5983 # Xcode variables depend on it, including variables such as
5982 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5984 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5983 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5985 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5984 # files to appear (when present) in the UI as actual files and not red 5986 # files to appear (when present) in the UI as actual files and not red
5985 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5987 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5986 # and therefore SYMROOT, needs to be set at the project level. 5988 # and therefore SYMROOT, needs to be set at the project level.
5987 'SYMROOT': '<(DEPTH)/xcodebuild', 5989 'SYMROOT': '<(DEPTH)/xcodebuild',
5988 }, 5990 },
5989 } 5991 }
OLDNEW
« no previous file with comments | « no previous file | build/filename_rules.gypi » ('j') | ui/ozone/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698