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

Unified Diff: ui/gfx/BUILD.gn

Issue 2705213005: Add NativePixmapDmabufStub to finalize glCreateImageCHROMIUM on Linux. (Closed)
Patch Set: Rebase Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: ui/gfx/BUILD.gn
diff --git a/ui/gfx/BUILD.gn b/ui/gfx/BUILD.gn
index 6c38dea81c853ad487cbb210e131cbe41668d6cf..dcb381a0e1ca07d12eb5db9ba4d423058e6bf342 100644
--- a/ui/gfx/BUILD.gn
+++ b/ui/gfx/BUILD.gn
@@ -490,7 +490,11 @@ group("memory_buffer") {
# Cannot be a static_library in component builds due to exported functions
source_set("memory_buffer_sources") {
- visibility = [ ":*" ] # Depend on through ":memory_buffer".
+ visibility = [
+ ":*",
+ "//gpu/ipc/service:gpu_ipc_service_unittests",
+ "//gpu/ipc/service:ipc_service_sources",
reveman 2017/04/12 18:21:36 why is this needed? seems bad to have references t
Julien Isorce 2017/04/13 12:46:02 I agree, this is because of https://codereview.chr
+ ] # Depend on through ":memory_buffer".
# TODO(brettw) refactor this so these sources are in a coherent directory
# structure rather than random samplings of ui/gfx and ui/gfx/mac.
@@ -534,6 +538,8 @@ source_set("memory_buffer_sources") {
"linux/client_native_pixmap_dmabuf.h",
"linux/client_native_pixmap_factory_dmabuf.cc",
"linux/client_native_pixmap_factory_dmabuf.h",
+ "linux/native_pixmap_dmabuf_stub.cc",
+ "linux/native_pixmap_dmabuf_stub.h",
]
deps += [ "//third_party/libdrm" ]

Powered by Google App Engine
This is Rietveld 408576698