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

Side by Side Diff: ui/ozone/platform/drm/gbm.gypi

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: resolve reveman's concerns 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 { 5 {
6 'variables': { 6 'variables': {
7 'internal_ozone_platform_deps': [ 7 'internal_ozone_platform_deps': [
8 'ozone_platform_gbm', 8 'ozone_platform_gbm',
9 ], 9 ],
10 'internal_ozone_platforms': [ 10 'internal_ozone_platforms': [
11 'gbm', 11 'gbm',
12 ], 12 ],
13 'use_mesa_platform_null%': 0, 13 'use_mesa_platform_null%': 0,
14 'ozone_use_vgem_map%': 0,
reveman 2015/08/07 14:35:16 just to be sure I understand. we have hardware tha
vignatti (out of this project) 2015/08/07 14:51:25 correct, but I don't think it's about hardware onl
dshwang 2015/08/07 15:36:46 correct. Done.
14 }, 15 },
15 'targets': [ 16 'targets': [
16 { 17 {
17 'target_name': 'ozone_platform_gbm', 18 'target_name': 'ozone_platform_gbm',
18 'type': 'static_library', 19 'type': 'static_library',
19 'dependencies': [ 20 'dependencies': [
20 '../../base/base.gyp:base', 21 '../../base/base.gyp:base',
21 '../../build/linux/system.gyp:libdrm', 22 '../../build/linux/system.gyp:libdrm',
22 '../../build/linux/system.gyp:gbm', 23 '../../build/linux/system.gyp:gbm',
23 '../../skia/skia.gyp:skia', 24 '../../skia/skia.gyp:skia',
(...skipping 23 matching lines...) Expand all
47 'gpu/gbm_surface_factory.h', 48 'gpu/gbm_surface_factory.h',
48 'gpu/gbm_surfaceless.cc', 49 'gpu/gbm_surfaceless.cc',
49 'gpu/gbm_surfaceless.h', 50 'gpu/gbm_surfaceless.h',
50 'ozone_platform_gbm.cc', 51 'ozone_platform_gbm.cc',
51 'ozone_platform_gbm.h', 52 'ozone_platform_gbm.h',
52 ], 53 ],
53 'conditions': [ 54 'conditions': [
54 ['use_mesa_platform_null==1', { 55 ['use_mesa_platform_null==1', {
55 'defines': ['USE_MESA_PLATFORM_NULL'], 56 'defines': ['USE_MESA_PLATFORM_NULL'],
56 }], 57 }],
58 ['ozone_use_vgem_map==1', {
59 'defines': ['OZONE_USE_VGEM_MAP'],
60 'sources': [
61 'gpu/client_native_pixmap_vgem.cc',
62 'gpu/client_native_pixmap_vgem.h',
63 ],
64 }],
57 ], 65 ],
58 }, 66 },
59 ], 67 ],
60 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698