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 # 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 } | |
| OLD | NEW |