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

Unified Diff: ui/latency/BUILD.gn

Issue 2805053004: Plumbing input event latency reporting through Mus GPU.
Patch Set: NON_EXPORTED_BASE Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/surfaces/display_output_surface.cc ('k') | ui/latency/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/latency/BUILD.gn
diff --git a/ui/latency/BUILD.gn b/ui/latency/BUILD.gn
index 5afbb031a17702a7a757367ece03950cbfb2cbe4..1b3c5e4bcec2a03f753813c1efc79d266395a1f1 100644
--- a/ui/latency/BUILD.gn
+++ b/ui/latency/BUILD.gn
@@ -1,4 +1,4 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
+# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -6,16 +6,32 @@ import("//testing/test.gni")
source_set("latency") {
sources = [
+ "latency/latency_histogram_macros.h",
"latency_info.cc",
"latency_info.h",
+ "latency_tracker.cc",
+ "latency_tracker.h",
]
+ defines = [ "LATENCY_IMPLEMENTATION" ]
+
deps = [
"//base",
"//ui/gfx",
]
}
+source_set("test_support") {
+ testonly = true
+ sources = [
+ "latency_info_test_support.cc",
+ ]
+
+ public_deps = [
+ ":latency",
+ ]
+}
+
test("latency_unittests") {
sources = [
"latency_info_unittest.cc",
« no previous file with comments | « services/ui/surfaces/display_output_surface.cc ('k') | ui/latency/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698