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

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

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: comment #6 #7 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/.
8 source_set("hit_test") {
9 sources = [
10 "components/viz/common/display_hit_test_data.h",
sadrul 2017/06/16 17:09:51 I assume you meant //components...? (it's weird th
riajiang 2017/06/23 02:46:36 Yea I meant //components. Added BUILD.gn to compon
11 "hit_test_query.cc",
12 "hit_test_query.h",
13 ]
14
15 public_deps = [
16 "//cc/surfaces:surface_id",
17 "//ui/gfx",
18 "//ui/gfx/geometry",
19 ]
20 }
21
22 test("viz_hit_test_unittests") {
23 testonly = true
24
25 sources = [
26 "hit_test_query_unittest.cc",
27 ]
28
29 deps = [
30 ":hit_test",
31 "//base",
32 "//base/test:run_all_unittests",
33 "//base/test:test_support",
34 "//cc:test_support",
35 "//testing/gtest",
36 ]
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698