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

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

Issue 2165303002: Convert Ozone GBM to use new surface API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ozone_impl
Patch Set: Add missing dep. Created 4 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
« no previous file with comments | « ui/ozone/platform/drm/BUILD.gn ('k') | ui/ozone/platform/drm/gpu/gbm_surface.h » ('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 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_platform_unittest_deps': [ 10 'internal_ozone_platform_unittest_deps': [
(...skipping 15 matching lines...) Expand all
26 'USE_DRM_ATOMIC', 26 'USE_DRM_ATOMIC',
27 ], 27 ],
28 }, 28 },
29 }], 29 }],
30 ], 30 ],
31 }, 31 },
32 { 32 {
33 'target_name': 'ozone_platform_gbm', 33 'target_name': 'ozone_platform_gbm',
34 'type': 'static_library', 34 'type': 'static_library',
35 'dependencies': [ 35 'dependencies': [
36 'gl/ozone_gl.gyp:ozone_gl',
36 'ozone.gyp:ozone_base', 37 'ozone.gyp:ozone_base',
37 'ozone.gyp:ozone_common', 38 'ozone.gyp:ozone_common',
38 '../../base/base.gyp:base', 39 '../../base/base.gyp:base',
39 '../../build/linux/system.gyp:libdrm', 40 '../../build/linux/system.gyp:libdrm',
40 '../../third_party/minigbm/minigbm.gyp:minigbm', 41 '../../third_party/minigbm/minigbm.gyp:minigbm',
41 '../../skia/skia.gyp:skia', 42 '../../skia/skia.gyp:skia',
42 '../../third_party/khronos/khronos.gyp:khronos_headers', 43 '../../third_party/khronos/khronos.gyp:khronos_headers',
43 '../base/ui_base.gyp:ui_base', 44 '../base/ui_base.gyp:ui_base',
44 '../display/display.gyp:display_types', 45 '../display/display.gyp:display_types',
45 '../display/display.gyp:display_util', 46 '../display/display.gyp:display_util',
46 '../events/devices/events_devices.gyp:events_devices', 47 '../events/devices/events_devices.gyp:events_devices',
47 '../events/events.gyp:events', 48 '../events/events.gyp:events',
48 '../events/ozone/events_ozone.gyp:events_ozone', 49 '../events/ozone/events_ozone.gyp:events_ozone',
49 '../events/ozone/events_ozone.gyp:events_ozone_evdev', 50 '../events/ozone/events_ozone.gyp:events_ozone_evdev',
50 '../events/ozone/events_ozone.gyp:events_ozone_layout', 51 '../events/ozone/events_ozone.gyp:events_ozone_layout',
51 '../events/platform/events_platform.gyp:events_platform', 52 '../events/platform/events_platform.gyp:events_platform',
53 '../gl/gl.gyp:gl',
52 '../gfx/gfx.gyp:gfx', 54 '../gfx/gfx.gyp:gfx',
53 '../gfx/gfx.gyp:gfx_geometry', 55 '../gfx/gfx.gyp:gfx_geometry',
54 'drm_atomic', 56 'drm_atomic',
55 ], 57 ],
56 'defines': [ 58 'defines': [
57 'OZONE_IMPLEMENTATION', 59 'OZONE_IMPLEMENTATION',
58 ], 60 ],
59 'sources': [ 61 'sources': [
60 'client_native_pixmap_factory_gbm.cc', 62 'client_native_pixmap_factory_gbm.cc',
61 'client_native_pixmap_factory_gbm.h', 63 'client_native_pixmap_factory_gbm.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 'gpu/drm_window.cc', 99 'gpu/drm_window.cc',
98 'gpu/drm_window.h', 100 'gpu/drm_window.h',
99 'gpu/drm_window_proxy.cc', 101 'gpu/drm_window_proxy.cc',
100 'gpu/drm_window_proxy.h', 102 'gpu/drm_window_proxy.h',
101 'gpu/gbm_buffer.cc', 103 'gpu/gbm_buffer.cc',
102 'gpu/gbm_buffer.h', 104 'gpu/gbm_buffer.h',
103 'gpu/gbm_buffer_base.cc', 105 'gpu/gbm_buffer_base.cc',
104 'gpu/gbm_buffer_base.h', 106 'gpu/gbm_buffer_base.h',
105 'gpu/gbm_device.cc', 107 'gpu/gbm_device.cc',
106 'gpu/gbm_device.h', 108 'gpu/gbm_device.h',
109 'gpu/gbm_surface.cc',
110 'gpu/gbm_surface.h',
107 'gpu/gbm_surface_factory.cc', 111 'gpu/gbm_surface_factory.cc',
108 'gpu/gbm_surface_factory.h', 112 'gpu/gbm_surface_factory.h',
109 'gpu/gbm_surfaceless.cc', 113 'gpu/gbm_surfaceless.cc',
110 'gpu/gbm_surfaceless.h', 114 'gpu/gbm_surfaceless.h',
111 'gpu/hardware_display_controller.cc', 115 'gpu/hardware_display_controller.cc',
112 'gpu/hardware_display_controller.h', 116 'gpu/hardware_display_controller.h',
113 'gpu/hardware_display_plane.cc', 117 'gpu/hardware_display_plane.cc',
114 'gpu/hardware_display_plane.h', 118 'gpu/hardware_display_plane.h',
115 'gpu/hardware_display_plane_manager.cc', 119 'gpu/hardware_display_plane_manager.cc',
116 'gpu/hardware_display_plane_manager.h', 120 'gpu/hardware_display_plane_manager.h',
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'gpu/mock_scanout_buffer.cc', 202 'gpu/mock_scanout_buffer.cc',
199 'gpu/mock_scanout_buffer.h', 203 'gpu/mock_scanout_buffer.h',
200 'gpu/mock_scanout_buffer_generator.cc', 204 'gpu/mock_scanout_buffer_generator.cc',
201 'gpu/mock_scanout_buffer_generator.h', 205 'gpu/mock_scanout_buffer_generator.h',
202 'gpu/screen_manager_unittest.cc', 206 'gpu/screen_manager_unittest.cc',
203 ], 207 ],
204 }, 208 },
205 }, 209 },
206 ], 210 ],
207 } 211 }
OLDNEW
« no previous file with comments | « ui/ozone/platform/drm/BUILD.gn ('k') | ui/ozone/platform/drm/gpu/gbm_surface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698