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

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

Issue 1071273002: NotForReview: Implement zero/one-copy texture for ozone freon using Intel DRM Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: depends on https://codereview.chromium.org/1134993003/ Created 5 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
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 }, 14 },
15 'targets': [ 15 'targets': [
16 { 16 {
17 'target_name': 'ozone_platform_gbm', 17 'target_name': 'ozone_platform_gbm',
18 'type': 'static_library', 18 'type': 'static_library',
19 'dependencies': [ 19 'dependencies': [
20 '../../base/base.gyp:base', 20 '../../base/base.gyp:base',
21 '../../build/linux/system.gyp:libdrm', 21 '../../build/linux/system.gyp:libdrm',
22 '../../build/linux/system.gyp:libdrm_intel',
22 '../../build/linux/system.gyp:gbm', 23 '../../build/linux/system.gyp:gbm',
23 '../../skia/skia.gyp:skia', 24 '../../skia/skia.gyp:skia',
24 '../../third_party/khronos/khronos.gyp:khronos_headers', 25 '../../third_party/khronos/khronos.gyp:khronos_headers',
25 '../base/ui_base.gyp:ui_base', 26 '../base/ui_base.gyp:ui_base',
26 '../events/events.gyp:events', 27 '../events/events.gyp:events',
27 '../events/ozone/events_ozone.gyp:events_ozone', 28 '../events/ozone/events_ozone.gyp:events_ozone',
28 '../events/ozone/events_ozone.gyp:events_ozone_evdev', 29 '../events/ozone/events_ozone.gyp:events_ozone_evdev',
29 '../events/ozone/events_ozone.gyp:events_ozone_layout', 30 '../events/ozone/events_ozone.gyp:events_ozone_layout',
30 '../gfx/gfx.gyp:gfx', 31 '../gfx/gfx.gyp:gfx',
31 ], 32 ],
32 'defines': [ 33 'defines': [
33 'OZONE_IMPLEMENTATION', 34 'OZONE_IMPLEMENTATION',
34 ], 35 ],
35 'sources': [ 36 'sources': [
36 'common/native_pixmap_manager_gbm.cc', 37 'common/native_pixmap_manager_gbm.cc',
37 'common/native_pixmap_manager_gbm.h', 38 'common/native_pixmap_manager_gbm.h',
38 'gpu/gbm_buffer.cc', 39 'gpu/gbm_buffer.cc',
39 'gpu/gbm_buffer.h', 40 'gpu/gbm_buffer.h',
40 'gpu/gbm_buffer_base.cc', 41 'gpu/gbm_buffer_base.cc',
41 'gpu/gbm_buffer_base.h', 42 'gpu/gbm_buffer_base.h',
42 'gpu/gbm_device.cc', 43 'gpu/gbm_device.cc',
43 'gpu/gbm_device.h', 44 'gpu/gbm_device.h',
44 'gpu/gbm_surface.cc', 45 'gpu/gbm_surface.cc',
45 'gpu/gbm_surface.h', 46 'gpu/gbm_surface.h',
46 'gpu/gbm_surface_factory.cc', 47 'gpu/gbm_surface_factory.cc',
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',
51 'gpu/intel_drm_pixmap.cc',
52 'gpu/intel_drm_pixmap.h',
50 'gpu/vgem_pixmap.cc', 53 'gpu/vgem_pixmap.cc',
51 'gpu/vgem_pixmap.h', 54 'gpu/vgem_pixmap.h',
52 'ozone_platform_gbm.cc', 55 'ozone_platform_gbm.cc',
53 'ozone_platform_gbm.h', 56 'ozone_platform_gbm.h',
54 ], 57 ],
55 'conditions': [ 58 'conditions': [
56 ['use_mesa_platform_null==1', { 59 ['use_mesa_platform_null==1', {
57 'defines': ['USE_MESA_PLATFORM_NULL'], 60 'defines': ['USE_MESA_PLATFORM_NULL'],
58 }], 61 }],
59 ], 62 ],
60 }, 63 },
61 ], 64 ],
62 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698