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

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

Issue 2687093002: Rename GLImageOzoneNativePixmap to GLImageNativePixmap and move it from ui/ozone/gl to ui/gl (Closed)
Patch Set: Rebase Created 3 years, 9 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 visibility = [ "//ui/ozone/*" ] 8 visibility = [ "//ui/ozone/*" ]
9 9
10 source_set("gbm") { 10 source_set("gbm") {
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 "//ui/events/devices", 129 "//ui/events/devices",
130 "//ui/events/ozone:events_ozone", 130 "//ui/events/ozone:events_ozone",
131 "//ui/events/ozone:events_ozone_evdev", 131 "//ui/events/ozone:events_ozone_evdev",
132 "//ui/events/ozone:events_ozone_layout", 132 "//ui/events/ozone:events_ozone_layout",
133 "//ui/events/platform", 133 "//ui/events/platform",
134 "//ui/gfx", 134 "//ui/gfx",
135 "//ui/gfx/geometry", 135 "//ui/gfx/geometry",
136 "//ui/gl", 136 "//ui/gl",
137 "//ui/ozone:ozone_base", 137 "//ui/ozone:ozone_base",
138 "//ui/ozone/common", 138 "//ui/ozone/common",
139 "//ui/ozone/gl",
140 "//ui/ozone/public/interfaces", 139 "//ui/ozone/public/interfaces",
141 "//ui/platform_window", 140 "//ui/platform_window",
142 ] 141 ]
143 142
144 public_configs = [ "//third_party/khronos:khronos_headers" ] 143 public_configs = [ "//third_party/khronos:khronos_headers" ]
145 144
146 defines = [ "OZONE_IMPLEMENTATION" ] 145 defines = [ "OZONE_IMPLEMENTATION" ]
147 } 146 }
148 147
149 source_set("gbm_unittests") { 148 source_set("gbm_unittests") {
(...skipping 21 matching lines...) Expand all
171 deps = [ 170 deps = [
172 ":gbm", 171 ":gbm",
173 "//skia", 172 "//skia",
174 "//testing/gtest", 173 "//testing/gtest",
175 "//third_party/libdrm", 174 "//third_party/libdrm",
176 "//ui/gfx", 175 "//ui/gfx",
177 "//ui/ozone:platform", 176 "//ui/ozone:platform",
178 "//ui/ozone/common", 177 "//ui/ozone/common",
179 ] 178 ]
180 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698