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

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

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/ozone.gyp ('k') | ui/ozone/platform/drm/gbm.gypi » ('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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "gpu/drm_window.cc", 62 "gpu/drm_window.cc",
63 "gpu/drm_window.h", 63 "gpu/drm_window.h",
64 "gpu/drm_window_proxy.cc", 64 "gpu/drm_window_proxy.cc",
65 "gpu/drm_window_proxy.h", 65 "gpu/drm_window_proxy.h",
66 "gpu/gbm_buffer.cc", 66 "gpu/gbm_buffer.cc",
67 "gpu/gbm_buffer.h", 67 "gpu/gbm_buffer.h",
68 "gpu/gbm_buffer_base.cc", 68 "gpu/gbm_buffer_base.cc",
69 "gpu/gbm_buffer_base.h", 69 "gpu/gbm_buffer_base.h",
70 "gpu/gbm_device.cc", 70 "gpu/gbm_device.cc",
71 "gpu/gbm_device.h", 71 "gpu/gbm_device.h",
72 "gpu/gbm_surface.cc",
73 "gpu/gbm_surface.h",
72 "gpu/gbm_surface_factory.cc", 74 "gpu/gbm_surface_factory.cc",
73 "gpu/gbm_surface_factory.h", 75 "gpu/gbm_surface_factory.h",
74 "gpu/gbm_surfaceless.cc", 76 "gpu/gbm_surfaceless.cc",
75 "gpu/gbm_surfaceless.h", 77 "gpu/gbm_surfaceless.h",
76 "gpu/hardware_display_controller.cc", 78 "gpu/hardware_display_controller.cc",
77 "gpu/hardware_display_controller.h", 79 "gpu/hardware_display_controller.h",
78 "gpu/hardware_display_plane.cc", 80 "gpu/hardware_display_plane.cc",
79 "gpu/hardware_display_plane.h", 81 "gpu/hardware_display_plane.h",
80 "gpu/hardware_display_plane_manager.cc", 82 "gpu/hardware_display_plane_manager.cc",
81 "gpu/hardware_display_plane_manager.h", 83 "gpu/hardware_display_plane_manager.h",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 "//ui/display/types", 132 "//ui/display/types",
131 "//ui/display/util", 133 "//ui/display/util",
132 "//ui/events", 134 "//ui/events",
133 "//ui/events/devices", 135 "//ui/events/devices",
134 "//ui/events/ozone:events_ozone", 136 "//ui/events/ozone:events_ozone",
135 "//ui/events/ozone:events_ozone_evdev", 137 "//ui/events/ozone:events_ozone_evdev",
136 "//ui/events/ozone:events_ozone_layout", 138 "//ui/events/ozone:events_ozone_layout",
137 "//ui/events/platform", 139 "//ui/events/platform",
138 "//ui/gfx", 140 "//ui/gfx",
139 "//ui/gfx/geometry", 141 "//ui/gfx/geometry",
142 "//ui/gl",
140 "//ui/ozone:ozone_base", 143 "//ui/ozone:ozone_base",
141 "//ui/ozone/common", 144 "//ui/ozone/common",
145 "//ui/ozone/gl",
142 "//ui/platform_window", 146 "//ui/platform_window",
143 ] 147 ]
144 148
145 configs += [ ":libdrm" ] 149 configs += [ ":libdrm" ]
146 150
147 public_configs = [ "//third_party/khronos:khronos_headers" ] 151 public_configs = [ "//third_party/khronos:khronos_headers" ]
148 152
149 defines = [ "OZONE_IMPLEMENTATION" ] 153 defines = [ "OZONE_IMPLEMENTATION" ]
150 154
151 if (use_drm_atomic) { 155 if (use_drm_atomic) {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 ":gbm", 190 ":gbm",
187 "//skia", 191 "//skia",
188 "//testing/gtest", 192 "//testing/gtest",
189 "//ui/gfx", 193 "//ui/gfx",
190 "//ui/ozone:platform", 194 "//ui/ozone:platform",
191 "//ui/ozone/common", 195 "//ui/ozone/common",
192 ] 196 ]
193 197
194 public_configs = [ ":libdrm" ] 198 public_configs = [ ":libdrm" ]
195 } 199 }
OLDNEW
« no previous file with comments | « ui/ozone/ozone.gyp ('k') | ui/ozone/platform/drm/gbm.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698