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

Side by Side Diff: ui/latency_info/BUILD.gn

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify ui/events OWNERS Created 4 years, 8 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 2014 The Chromium Authors. All rights reserved.
sky 2016/04/12 17:51:58 2016.
Fady Samuel 2016/04/12 19:18:04 Done.
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("latency_info") {
8 sources = [
9 "latency_info.cc",
10 "latency_info.h",
11 "latency_info_export.h",
12 ]
13
14 defines = [ "LATENCY_INFO_IMPLEMENTATION" ]
15
16 deps = [
17 "//base",
18 ]
19 }
20
21 test("latency_info_unittests") {
22 sources = [
23 "latency_info_unittest.cc",
24 ]
25
26 deps = [
27 ":latency_info",
28 "//base",
29 "//base/test:run_all_unittests",
30 "//base/test:test_support",
31 "//testing/gmock",
32 "//testing/gtest",
33 ]
34
35 if (!is_ios) {
36 sources += [ "ipc/latency_info_param_traits_unittest.cc" ]
37 deps += [
38 "//ipc:test_support",
39 "//ui/latency_info/ipc",
40 ]
41 }
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698