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

Side by Side Diff: components/ukm/BUILD.gn

Issue 2858683006: UKM debug page (Closed)
Patch Set: UKM debug page Created 3 years, 7 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
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 # The Url-Keyed Metrics (UKM) service is responsible for gathering and 7 # The Url-Keyed Metrics (UKM) service is responsible for gathering and
8 # uploading reports that contain fine grained performance metrics including 8 # uploading reports that contain fine grained performance metrics including
9 # URLs for top-level navigations. 9 # URLs for top-level navigations.
10 static_library("ukm") { 10 static_library("ukm") {
(...skipping 19 matching lines...) Expand all
30 deps = [ 30 deps = [
31 "//base", 31 "//base",
32 "//components/data_use_measurement/core", 32 "//components/data_use_measurement/core",
33 "//components/metrics", 33 "//components/metrics",
34 "//components/prefs", 34 "//components/prefs",
35 "//components/variations", 35 "//components/variations",
36 "//url", 36 "//url",
37 ] 37 ]
38 } 38 }
39 39
40 static_library("debug_page") {
41 sources = [
42 "debug_page/debug_page.cc",
43 "debug_page/debug_page.h",
44 ]
45
46 deps = [
47 "//base",
48 "//net",
49 ]
50 }
51
40 # Helper library for observing signals that we need to clear any local data. 52 # Helper library for observing signals that we need to clear any local data.
41 static_library("observers") { 53 static_library("observers") {
42 sources = [ 54 sources = [
43 "observers/history_delete_observer.cc", 55 "observers/history_delete_observer.cc",
44 "observers/history_delete_observer.h", 56 "observers/history_delete_observer.h",
45 "observers/sync_disable_observer.cc", 57 "observers/sync_disable_observer.cc",
46 "observers/sync_disable_observer.h", 58 "observers/sync_disable_observer.h",
47 ] 59 ]
48 60
49 deps = [ 61 deps = [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 109
98 # Convenience testing target 110 # Convenience testing target
99 test("ukm_unittests") { 111 test("ukm_unittests") {
100 deps = [ 112 deps = [
101 ":unit_tests", 113 ":unit_tests",
102 "//base", 114 "//base",
103 "//base/test:run_all_unittests", 115 "//base/test:run_all_unittests",
104 "//base/test:test_support", 116 "//base/test:test_support",
105 ] 117 ]
106 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698