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

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

Issue 2938953002: Implement HitTestAggregator (Closed)
Patch Set: add transform include to resolve build bot failure Created 3 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 side-by-side diff with in-line comments
Download patch
Index: components/viz/service/BUILD.gn
diff --git a/components/viz/service/BUILD.gn b/components/viz/service/BUILD.gn
index 2516ef24252a9f4019ee747b0ab3356a250d543b..f4144b7725668ae0bc7e7a6ccfdb99d5a2b6c3e2 100644
--- a/components/viz/service/BUILD.gn
+++ b/components/viz/service/BUILD.gn
@@ -34,6 +34,8 @@ component("service") {
"frame_sinks/gpu_compositor_frame_sink_delegate.h",
"frame_sinks/gpu_root_compositor_frame_sink.cc",
"frame_sinks/gpu_root_compositor_frame_sink.h",
+ "hit_test/hit_test_aggregator.cc",
+ "hit_test/hit_test_aggregator.h",
"viz_service_export.h",
]
@@ -58,6 +60,7 @@ component("service") {
"//cc/surfaces",
"//gpu/command_buffer/client:gles2_interface",
"//gpu/ipc:command_buffer",
+ "//services/viz/public/interfaces",
]
if (is_mac) {
@@ -99,6 +102,7 @@ source_set("unit_tests") {
sources = [
"display_embedder/buffer_queue_unittest.cc",
"display_embedder/server_shared_bitmap_manager_unittest.cc",
+ "hit_test/hit_test_aggregator_unittest.cc",
]
if (!use_aura && !is_mac) {
@@ -116,6 +120,12 @@ source_set("unit_tests") {
"//base/test:test_support",
"//cc:test_support",
"//components/viz/common",
+ "//gpu/command_buffer/client",
+ "//gpu/command_buffer/client:gles2_implementation",
+ "//gpu/ipc:gl_in_process_context",
+ "//media",
+ "//services/viz/public/interfaces",
+ "//skia",
"//testing/gmock",
"//testing/gtest",
"//ui/display/types",

Powered by Google App Engine
This is Rietveld 408576698