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

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

Issue 2938953002: Implement HitTestAggregator (Closed)
Patch Set: rebase 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 component("hit_test") {
8 defines = [ "HIT_TEST_IMPLEMENTATION" ]
9
10 sources = [
11 "display_hit_test_data.h",
12 "display_hit_test_data_factory.h",
13 "display_hit_test_data_factory_local.cc",
14 "display_hit_test_data_factory_local.h",
15 "hit_test_aggregator.cc",
16 "hit_test_aggregator.h",
17 ]
18
19 deps = [
20 "//cc/ipc:interfaces",
21 "//components/viz/hit_test/public/interfaces",
22 ]
23 }
24
25 # These are part of the components_unittests build target.
26 source_set("unit_tests") {
27 testonly = true
28 sources = [
29 "hit_test_aggregator_unittest.cc",
30 ]
31
32 deps = [
33 ":hit_test",
34 "//base",
35 "//base/test:run_all_unittests",
36 "//base/test:test_support",
37 "//components/viz/hit_test/public/interfaces",
38 "//testing/gtest",
39 ]
40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698