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

Side by Side Diff: ui/ozone/ozone.gni

Issue 1253363004: ozone gbm: whitelist 3 DRM ioctl code for native GpuMemoryBuffer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move code to content/ Created 5 years, 4 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 declare_args() { 5 declare_args() {
6 # Select platforms automatically. Turn this off for manual control. 6 # Select platforms automatically. Turn this off for manual control.
7 ozone_auto_platforms = true 7 ozone_auto_platforms = true
8
9 # TODO(dshwang): remove this flag when all gbm hardware supports vgem map.
10 # crbug.com/519587
11 use_vgem_map = false
brettw 2015/08/24 21:53:38 Can you call this ozone_use_vgem_map instead? Does
spang 2015/08/24 22:09:09 The scope is narrower than ozone, it applies to Ch
dshwang 2015/08/26 12:02:43 got it. I'll rename it to CHROMEOS_USE_VGEM_MAP wi
dshwang 2015/08/26 14:18:02 I didn't rename it. done to update comments.
8 } 12 }
9 13
10 declare_args() { 14 declare_args() {
11 # The platform that will be active by default. 15 # The platform that will be active by default.
12 ozone_platform = "" 16 ozone_platform = ""
13 17
14 # Enable individual platforms. 18 # Enable individual platforms.
15 ozone_platform_caca = false 19 ozone_platform_caca = false
16 ozone_platform_drm = false 20 ozone_platform_drm = false
17 ozone_platform_egltest = false 21 ozone_platform_egltest = false
18 ozone_platform_gbm = false 22 ozone_platform_gbm = false
19 ozone_platform_ozonex = false 23 ozone_platform_ozonex = false
20 ozone_platform_test = false 24 ozone_platform_test = false
21 25
22 if (ozone_auto_platforms) { 26 if (ozone_auto_platforms) {
23 # Use test as the default platform. 27 # Use test as the default platform.
24 ozone_platform = "test" 28 ozone_platform = "test"
25 29
26 # Build all platforms whose deps are in install-build-deps.sh. 30 # Build all platforms whose deps are in install-build-deps.sh.
27 # Only these platforms will be compile tested by buildbots. 31 # Only these platforms will be compile tested by buildbots.
28 ozone_platform_drm = true 32 ozone_platform_drm = true
29 ozone_platform_test = true 33 ozone_platform_test = true
30 ozone_platform_egltest = true 34 ozone_platform_egltest = true
31 } 35 }
32 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698