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

Side by Side Diff: components/viz/host/hit_test/BUILD.gn

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: recursion; comment#10 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//testing/test.gni")
6
7 source_set("hit_test") {
8 sources = [
9 "hit_test_query.cc",
10 "hit_test_query.h",
11 ]
12
13 public_deps = [
14 "//cc/surfaces:surface_id",
15 "//components/viz/common/hit_test:hit_test_common",
16 "//ui/gfx",
17 "//ui/gfx/geometry",
18 ]
19 }
20
21 test("viz_hit_test_host_unittests") {
rjkroege 2017/06/27 00:10:52 afaik, needs to be a source set as is part of comp
riajiang 2017/06/27 15:51:44 I see, changed to be part of components_unittests
22 testonly = true
23
24 sources = [
25 "hit_test_query_unittest.cc",
26 ]
27
28 deps = [
29 ":hit_test",
30 "//base",
31 "//base/test:run_all_unittests",
32 "//base/test:test_support",
33 "//cc:test_support",
34 "//testing/gtest",
35 ]
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698