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

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

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to new crrev.com/1128113011 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 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_mesa_platform_null = false 9 use_mesa_platform_null = false
10 use_drm_atomic = false 10 use_drm_atomic = false
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "gpu/gbm_buffer_base.cc", 168 "gpu/gbm_buffer_base.cc",
169 "gpu/gbm_buffer_base.h", 169 "gpu/gbm_buffer_base.h",
170 "gpu/gbm_device.cc", 170 "gpu/gbm_device.cc",
171 "gpu/gbm_device.h", 171 "gpu/gbm_device.h",
172 "gpu/gbm_surface.cc", 172 "gpu/gbm_surface.cc",
173 "gpu/gbm_surface.h", 173 "gpu/gbm_surface.h",
174 "gpu/gbm_surface_factory.cc", 174 "gpu/gbm_surface_factory.cc",
175 "gpu/gbm_surface_factory.h", 175 "gpu/gbm_surface_factory.h",
176 "gpu/gbm_surfaceless.cc", 176 "gpu/gbm_surfaceless.cc",
177 "gpu/gbm_surfaceless.h", 177 "gpu/gbm_surfaceless.h",
178 "gpu/vgem_pixmap.cc",
179 "gpu/vgem_pixmap.h",
178 "ozone_platform_gbm.cc", 180 "ozone_platform_gbm.cc",
179 "ozone_platform_gbm.h", 181 "ozone_platform_gbm.h",
180 ] 182 ]
181 183
182 deps = [ 184 deps = [
183 ":drm_common", 185 ":drm_common",
184 "//base", 186 "//base",
185 "//skia", 187 "//skia",
186 "//ui/events/ozone:events_ozone_evdev", 188 "//ui/events/ozone:events_ozone_evdev",
187 "//ui/events/ozone:events_ozone_layout", 189 "//ui/events/ozone:events_ozone_layout",
188 ] 190 ]
189 191
190 public_configs = [ 192 public_configs = [
191 ":libgbm", 193 ":libgbm",
192 "//third_party/khronos:khronos_headers", 194 "//third_party/khronos:khronos_headers",
193 ] 195 ]
194 196
195 if (use_mesa_platform_null) { 197 if (use_mesa_platform_null) {
196 defines += [ "USE_MESA_PLATFORM_NULL" ] 198 defines += [ "USE_MESA_PLATFORM_NULL" ]
197 } 199 }
198 } 200 }
199 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698