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

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

Issue 2933493003: Add viz-host HitTestQuery. (Closed)
Patch Set: don't combine uint and int; check for overflow 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 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("//components/viz/viz.gni")
6 import("//testing/test.gni")
7
8 viz_source_set("hit_test") {
9 sources = [
10 "hit_test_query.cc",
11 "hit_test_query.h",
12 ]
13
14 public_deps = [
15 "//components/viz/common",
16 "//services/viz/hit_test/public/interfaces",
17 "//ui/gfx",
18 "//ui/gfx/geometry",
19 ]
20 }
21
22 viz_source_set("unit_tests") {
23 testonly = true
24
25 sources = [
26 "hit_test_query_unittest.cc",
27 ]
28
29 deps = [
30 ":hit_test",
31 "//base",
32 "//base/test:test_support",
33 "//cc:test_support",
34 "//testing/gtest",
35 ]
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698