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

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

Issue 2933493003: Add viz-host HitTestQuery. (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 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 # TODO(riajiang): Integrate with https://codereview.chromium.org/2908783002/.
rjkroege 2017/06/12 17:17:23 One of you needs to land first. :-)
8 component("hit_test") {
9 defines = [ "HIT_TEST_IMPLEMENTATION" ]
10
11 sources = [
12 "common/display_hit_test_data.h",
13 "query/hit_test_query.cc",
14 "query/hit_test_query.h",
15 ]
16
17 public_deps = [
18 "//cc/surfaces:surface_id",
19 "//ui/gfx",
20 "//ui/gfx/geometry",
21 ]
22 }
23
24 test("viz_hit_test_unittests") {
25 testonly = true
26
27 sources = [
28 "query/hit_test_query_unittest.cc",
29 ]
30
31 deps = [
32 ":hit_test",
33 "//base",
34 "//base/test:run_all_unittests",
35 "//base/test:test_support",
36 "//cc:test_support",
37 "//testing/gtest",
38 ]
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698