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/hittest/BUILD.gn

Issue 2908783002: WIP Hittest Component.
Patch Set: format Created 3 years, 7 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/hittest/BUILD.gn
diff --git a/components/viz/hittest/BUILD.gn b/components/viz/hittest/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..417ed03da9cb4c471dfcc2d17fc4b3592957aea6
--- /dev/null
+++ b/components/viz/hittest/BUILD.gn
@@ -0,0 +1,22 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+component("hittest") {
+ defines = [ "HITTEST_IMPLEMENTATION" ]
+
+ sources = [
+ "hittest.cc",
+ "hittest.h",
+ ]
+
+ deps = [
rjkroege 2017/05/29 15:58:02 this seems bigger than it should be
gklassen 2017/06/05 21:32:13 true. thanks for the catch. new patch soon.
+ "//base",
+ "//cc",
+ "//cc/ipc:interfaces",
+ "//cc/surfaces",
+ "//components/viz/display_compositor",
+ "//components/viz/hittest/public/interfaces",
+ "//gpu/ipc:command_buffer",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698