| 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",
|
|
|