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

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

Issue 2567263003: Basic UkmService implementation (Closed)
Patch Set: Proto and client_id Created 3 years, 11 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.
rkaplow 2017/01/02 23:23:03 nit 2017, also elsewhere
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 static_library("ukm") {
6 sources = [
7 "metrics_reporting_scheduler.cc",
8 "metrics_reporting_scheduler.h",
9 "persisted_logs_metrics_impl.cc",
10 "persisted_logs_metrics_impl.h",
11 "ukm_pref_names.cc",
12 "ukm_pref_names.h",
13 "ukm_service.cc",
14 "ukm_service.h",
15 ]
16
17 deps = [
18 "//base",
19 "//components/data_use_measurement/core",
20 "//components/metrics",
21 "//components/prefs",
22 "//components/variations",
23 ]
24 }
25
26 source_set("unit_tests") {
27 testonly = true
28 sources = [
29 "ukm_service_unittest.cc",
30 ]
31
32 deps = [
33 ":ukm",
34 "//base",
35 "//base/test:test_support",
36 "//components/metrics",
37 "//components/prefs:test_support",
38 "//net:test_support",
39 "//testing/gtest",
40 "//url",
41 ]
42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698