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

Unified Diff: gpu/ipc/client/BUILD.gn

Issue 2384243003: ui: Add libsync GLFence implementation.
Patch Set: rebase Created 4 years, 2 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
« no previous file with comments | « content/child/child_gpu_memory_buffer_manager.cc ('k') | gpu/ipc/client/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/client/BUILD.gn
diff --git a/gpu/ipc/client/BUILD.gn b/gpu/ipc/client/BUILD.gn
index bdbfc09a8247f309602eaf54c41e0cfc933ca233..599fa49a37d5b6988315b2a2443225d444882cf1 100644
--- a/gpu/ipc/client/BUILD.gn
+++ b/gpu/ipc/client/BUILD.gn
@@ -24,6 +24,8 @@ source_set("ipc_client_sources") {
"gpu_channel_host.h",
"gpu_fence_impl.cc",
"gpu_fence_impl.h",
+ "gpu_fence_impl_shared_event.cc",
+ "gpu_fence_impl_shared_event.h",
"gpu_memory_buffer_impl.cc",
"gpu_memory_buffer_impl.h",
"gpu_memory_buffer_impl_shared_memory.cc",
@@ -44,6 +46,12 @@ source_set("ipc_client_sources") {
]
libs = [ "android" ]
}
+ if (is_linux) {
+ sources += [
+ "gpu_fence_impl_libsync.cc",
+ "gpu_fence_impl_libsync.h",
+ ]
+ }
if (use_ozone) {
sources += [
"gpu_memory_buffer_impl_ozone_native_pixmap.cc",
@@ -71,4 +79,7 @@ source_set("ipc_client_sources") {
if (use_ozone) {
deps += [ "//ui/ozone" ]
}
+ if (is_linux) {
+ deps += [ "//third_party/libsync" ]
+ }
}
« no previous file with comments | « content/child/child_gpu_memory_buffer_manager.cc ('k') | gpu/ipc/client/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698