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

Unified Diff: ui/latency/BUILD.gn

Issue 2783973002: Moving LatencyInfo into a separate component. (Closed)
Patch Set: Rebase again Created 3 years, 9 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 | « ui/events/mojo/typemaps.gni ('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
new file mode 100644
index 0000000000000000000000000000000000000000..bcb868ceb665f5aaa394292429f9c1f39c06a453
--- /dev/null
+++ b/ui/latency/BUILD.gn
@@ -0,0 +1,43 @@
+# Copyright 2014 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.
+
+import("//testing/test.gni")
+
+source_set("latency") {
+ sources = [
+ "latency_info.cc",
+ "latency_info.h",
+ ]
+
+ deps = [
+ "//base",
+ "//ui/gfx",
+ ]
+}
+
+test("latency_unittests") {
+ sources = [
+ "latency_info_unittest.cc",
+ ]
+
+ deps = [
+ ":latency",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+
+ if (!is_ios) {
+ sources += [
+ "ipc/latency_info_param_traits_unittest.cc",
+ "mojo/struct_traits_unittest",
+ ]
+ deps += [
+ "//ipc:test_support",
+ "//ui/latency/ipc",
+ ]
+ }
+}
« no previous file with comments | « ui/events/mojo/typemaps.gni ('k') | ui/latency/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698