Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |