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

Side by Side Diff: ui/ozone/platform/drm/BUILD.gn

Issue 2156093004: Use mojo for cursor control in ozone drm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: corrected small code oversight 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/BUILD.gn ('k') | ui/ozone/platform/drm/DEPS » ('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 import("//build/config/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//ui/ozone/ozone.gni") 6 import("//ui/ozone/ozone.gni")
7 7
8 declare_args() { 8 declare_args() {
9 use_drm_atomic = false 9 use_drm_atomic = false
10 } 10 }
(...skipping 13 matching lines...) Expand all
24 source_set("gbm") { 24 source_set("gbm") {
25 sources = [ 25 sources = [
26 "client_native_pixmap_factory_gbm.cc", 26 "client_native_pixmap_factory_gbm.cc",
27 "client_native_pixmap_factory_gbm.h", 27 "client_native_pixmap_factory_gbm.h",
28 "common/client_native_pixmap_dmabuf.cc", 28 "common/client_native_pixmap_dmabuf.cc",
29 "common/client_native_pixmap_dmabuf.h", 29 "common/client_native_pixmap_dmabuf.h",
30 "common/drm_util.cc", 30 "common/drm_util.cc",
31 "common/drm_util.h", 31 "common/drm_util.h",
32 "common/scoped_drm_types.cc", 32 "common/scoped_drm_types.cc",
33 "common/scoped_drm_types.h", 33 "common/scoped_drm_types.h",
34 "cursor_proxy_mojo.cc",
35 "cursor_proxy_mojo.h",
34 "gpu/crtc_controller.cc", 36 "gpu/crtc_controller.cc",
35 "gpu/crtc_controller.h", 37 "gpu/crtc_controller.h",
36 "gpu/drm_buffer.cc", 38 "gpu/drm_buffer.cc",
37 "gpu/drm_buffer.h", 39 "gpu/drm_buffer.h",
38 "gpu/drm_console_buffer.cc", 40 "gpu/drm_console_buffer.cc",
39 "gpu/drm_console_buffer.h", 41 "gpu/drm_console_buffer.h",
40 "gpu/drm_device.cc", 42 "gpu/drm_device.cc",
41 "gpu/drm_device.h", 43 "gpu/drm_device.h",
42 "gpu/drm_device_generator.cc", 44 "gpu/drm_device_generator.cc",
43 "gpu/drm_device_generator.h", 45 "gpu/drm_device_generator.h",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 "host/gpu_thread_observer.h", 120 "host/gpu_thread_observer.h",
119 "mus_thread_proxy.cc", 121 "mus_thread_proxy.cc",
120 "mus_thread_proxy.h", 122 "mus_thread_proxy.h",
121 "ozone_platform_gbm.cc", 123 "ozone_platform_gbm.cc",
122 "ozone_platform_gbm.h", 124 "ozone_platform_gbm.h",
123 ] 125 ]
124 126
125 deps = [ 127 deps = [
126 "//base", 128 "//base",
127 "//ipc", 129 "//ipc",
130 "//mojo/common:common_base",
131 "//services/shell/public/cpp:sources",
128 "//skia", 132 "//skia",
129 "//third_party/minigbm", 133 "//third_party/minigbm",
130 "//ui/base", 134 "//ui/base",
131 "//ui/display", 135 "//ui/display",
132 "//ui/display/types", 136 "//ui/display/types",
133 "//ui/display/util", 137 "//ui/display/util",
134 "//ui/events", 138 "//ui/events",
135 "//ui/events/devices", 139 "//ui/events/devices",
136 "//ui/events/ozone:events_ozone", 140 "//ui/events/ozone:events_ozone",
137 "//ui/events/ozone:events_ozone_evdev", 141 "//ui/events/ozone:events_ozone_evdev",
138 "//ui/events/ozone:events_ozone_layout", 142 "//ui/events/ozone:events_ozone_layout",
139 "//ui/events/platform", 143 "//ui/events/platform",
140 "//ui/gfx", 144 "//ui/gfx",
141 "//ui/gfx/geometry", 145 "//ui/gfx/geometry",
142 "//ui/gl", 146 "//ui/gl",
143 "//ui/ozone:ozone_base", 147 "//ui/ozone:ozone_base",
144 "//ui/ozone/common", 148 "//ui/ozone/common",
145 "//ui/ozone/gl", 149 "//ui/ozone/gl",
150 "//ui/ozone/public/interfaces",
146 "//ui/platform_window", 151 "//ui/platform_window",
147 ] 152 ]
148 153
149 configs += [ ":libdrm" ] 154 configs += [ ":libdrm" ]
150 155
151 public_configs = [ "//third_party/khronos:khronos_headers" ] 156 public_configs = [ "//third_party/khronos:khronos_headers" ]
152 157
153 defines = [ "OZONE_IMPLEMENTATION" ] 158 defines = [ "OZONE_IMPLEMENTATION" ]
154 159
155 if (use_drm_atomic) { 160 if (use_drm_atomic) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 ":gbm", 195 ":gbm",
191 "//skia", 196 "//skia",
192 "//testing/gtest", 197 "//testing/gtest",
193 "//ui/gfx", 198 "//ui/gfx",
194 "//ui/ozone:platform", 199 "//ui/ozone:platform",
195 "//ui/ozone/common", 200 "//ui/ozone/common",
196 ] 201 ]
197 202
198 public_configs = [ ":libdrm" ] 203 public_configs = [ ":libdrm" ]
199 } 204 }
OLDNEW
« no previous file with comments | « ui/ozone/BUILD.gn ('k') | ui/ozone/platform/drm/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698