1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'internal_ozone_platform_deps': [
'ozone_platform_drm',
],
'internal_ozone_platform_unittest_deps': [
'ozone_platform_drm_unittests',
],
'internal_ozone_platforms': [
'dri',
'drm',
],
},
'targets': [
{
'target_name': 'ozone_platform_drm',
'type': 'static_library',
'dependencies': [
'../../base/base.gyp:base',
'../../build/linux/system.gyp:libdrm',
'../../skia/skia.gyp:skia',
'../base/ui_base.gyp:ui_base',
'../display/display.gyp:display_types',
'../display/display.gyp:display_util',
'../events/devices/events_devices.gyp:events_devices',
'../events/events.gyp:events',
'../events/ozone/events_ozone.gyp:events_ozone_evdev',
'../events/ozone/events_ozone.gyp:events_ozone_layout',
'../events/platform/events_platform.gyp:events_platform',
'../gfx/gfx.gyp:gfx',
'../gfx/gfx.gyp:gfx_geometry',
],
'defines': [
'OZONE_IMPLEMENTATION',
],
'sources': [
'common/drm_util.cc',
'common/drm_util.h',
'common/scoped_drm_types.cc',
'common/scoped_drm_types.h',
'gpu/crtc_controller.cc',
'gpu/crtc_controller.h',
'gpu/display_change_observer.h',
'gpu/drm_buffer.cc',
'gpu/drm_buffer.h',
'gpu/drm_console_buffer.cc',
'gpu/drm_console_buffer.h',
'gpu/drm_device.cc',
'gpu/drm_device.h',
'gpu/drm_device_generator.cc',
'gpu/drm_device_generator.h',
'gpu/drm_device_manager.cc',
'gpu/drm_device_manager.h',
'gpu/drm_display.cc',
'gpu/drm_display.h',
'gpu/drm_gpu_display_manager.cc',
'gpu/drm_gpu_display_manager.h',
'gpu/drm_gpu_platform_support.cc',
'gpu/drm_gpu_platform_support.h',
'gpu/drm_surface.cc',
'gpu/drm_surface.h',
'gpu/drm_surface_factory.cc',
'gpu/drm_surface_factory.h',
'gpu/drm_vsync_provider.cc',
'gpu/drm_vsync_provider.h',
'gpu/drm_window.cc',
'gpu/drm_window.h',
'gpu/hardware_display_controller.cc',
'gpu/hardware_display_controller.h',
'gpu/hardware_display_plane.cc',
'gpu/hardware_display_plane.h',
'gpu/hardware_display_plane_manager.cc',
'gpu/hardware_display_plane_manager.h',
'gpu/hardware_display_plane_manager_legacy.cc',
'gpu/hardware_display_plane_manager_legacy.h',
'gpu/overlay_plane.cc',
'gpu/overlay_plane.h',
'gpu/page_flip_request.cc',
'gpu/page_flip_request.h',
'gpu/screen_manager.cc',
'gpu/screen_manager.h',
'host/channel_observer.h',
'host/drm_cursor.cc',
'host/drm_cursor.h',
'host/drm_device_handle.cc',
'host/drm_device_handle.h',
'host/drm_display_host.cc',
'host/drm_display_host.h',
'host/drm_display_host_manager.cc',
'host/drm_display_host_manager.h',
'host/drm_gpu_platform_support_host.cc',
'host/drm_gpu_platform_support_host.h',
'host/drm_native_display_delegate.cc',
'host/drm_native_display_delegate.h',
'host/drm_overlay_candidates_host.cc',
'host/drm_overlay_candidates_host.h',
'host/drm_overlay_manager.cc',
'host/drm_overlay_manager.h',
'host/drm_window_host.cc',
'host/drm_window_host.h',
'host/drm_window_host_manager.cc',
'host/drm_window_host_manager.h',
'ozone_platform_drm.cc',
'ozone_platform_drm.h',
'scanout_buffer.h',
],
},
{
'target_name': 'ozone_platform_drm_unittests',
'type': 'none',
'dependencies': [
'../../build/linux/system.gyp:libdrm',
'../../skia/skia.gyp:skia',
'../gfx/gfx.gyp:gfx',
'../gfx/gfx.gyp:gfx_geometry',
'ozone.gyp:ozone',
],
'export_dependent_settings': [
'../../build/linux/system.gyp:libdrm',
'../../skia/skia.gyp:skia',
'../gfx/gfx.gyp:gfx_geometry',
],
'direct_dependent_settings': {
'sources': [
'gpu/drm_surface_unittest.cc',
'gpu/drm_window_unittest.cc',
'gpu/hardware_display_controller_unittest.cc',
'gpu/hardware_display_plane_manager_unittest.cc',
'gpu/screen_manager_unittest.cc',
'test/mock_drm_device.cc',
'test/mock_drm_device.h',
],
},
},
],
}
|