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

Unified Diff: components/viz/service/BUILD.gn

Issue 2942283002: viz: Use a simple GpuMemoryBufferManager implementation. (Closed)
Patch Set: . Created 3 years, 6 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 | « no previous file | components/viz/service/display_compositor/gpu_display_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/viz/service/BUILD.gn
diff --git a/components/viz/service/BUILD.gn b/components/viz/service/BUILD.gn
index ecb8291d9c668d27a0d4eae05784858f362ccd8a..f42cb4d2718c5a008f602f75453a524be1a4a953 100644
--- a/components/viz/service/BUILD.gn
+++ b/components/viz/service/BUILD.gn
@@ -26,6 +26,8 @@ component("service") {
"display_compositor/gpu_display_provider.h",
"display_compositor/host_shared_bitmap_manager.cc",
"display_compositor/host_shared_bitmap_manager.h",
+ "display_compositor/in_process_gpu_memory_buffer_manager.cc",
+ "display_compositor/in_process_gpu_memory_buffer_manager.h",
"frame_sinks/frame_eviction_manager.cc",
"frame_sinks/frame_eviction_manager.h",
"frame_sinks/frame_evictor.cc",
@@ -44,6 +46,13 @@ component("service") {
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
+ deps = [
+ # Note that dependency on //gpu/ipc/client is for GpuMemoryBufferImpl. This
+ # dependency should not be in public_deps.
+ "//gpu/ipc/client",
+ "//gpu/ipc/service",
+ ]
+
public_deps = [
"//base",
"//cc",
« no previous file with comments | « no previous file | components/viz/service/display_compositor/gpu_display_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698