OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("latency") { | 7 source_set("latency") { |
8 sources = [ | 8 sources = [ |
9 "latency/latency_histogram_macros.h", | 9 "latency_histogram_macros.h", |
10 "latency_info.cc", | 10 "latency_info.cc", |
11 "latency_info.h", | 11 "latency_info.h", |
12 "latency_tracker.cc", | 12 "latency_tracker.cc", |
13 "latency_tracker.h", | 13 "latency_tracker.h", |
14 ] | 14 ] |
15 | 15 |
16 deps = [ | 16 deps = [ |
17 "//base", | 17 "//base", |
18 "//ui/gfx", | 18 "//ui/gfx", |
19 ] | 19 ] |
(...skipping 30 matching lines...) Expand all Loading... |
50 "mojo/struct_traits_unittest.cc", | 50 "mojo/struct_traits_unittest.cc", |
51 ] | 51 ] |
52 deps += [ | 52 deps += [ |
53 "//ipc:test_support", | 53 "//ipc:test_support", |
54 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
55 "//ui/latency/ipc", | 55 "//ui/latency/ipc", |
56 "//ui/latency/mojo:test_interfaces", | 56 "//ui/latency/mojo:test_interfaces", |
57 ] | 57 ] |
58 } | 58 } |
59 } | 59 } |
OLD | NEW |