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

Unified Diff: components/ukm/BUILD.gn

Issue 2883563002: Refactor UKM interface for mojo-ification (Closed)
Patch Set: Fix uma_session_stats.cc 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 side-by-side diff with in-line comments
Download patch
Index: components/ukm/BUILD.gn
diff --git a/components/ukm/BUILD.gn b/components/ukm/BUILD.gn
index dc9c405b7579aa0aa44242ad9a54e09b62f3141c..a89c0c69e5e02c78af51007a4ba681a03aa0d7e7 100644
--- a/components/ukm/BUILD.gn
+++ b/components/ukm/BUILD.gn
@@ -11,12 +11,10 @@ static_library("ukm") {
sources = [
"persisted_logs_metrics_impl.cc",
"persisted_logs_metrics_impl.h",
- "ukm_entry.cc",
- "ukm_entry.h",
- "ukm_entry_builder.cc",
- "ukm_entry_builder.h",
"ukm_pref_names.cc",
"ukm_pref_names.h",
+ "ukm_recorder_impl.cc",
+ "ukm_recorder_impl.h",
"ukm_reporting_service.cc",
"ukm_reporting_service.h",
"ukm_rotation_scheduler.cc",
@@ -27,6 +25,11 @@ static_library("ukm") {
"ukm_source.h",
]
+ public_deps = [
+ "//components/metrics/proto",
+ "//components/ukm/public",
+ ]
+
deps = [
"//base",
"//components/data_use_measurement/core",
@@ -56,12 +59,13 @@ static_library("observers") {
static_library("test_support") {
testonly = true
sources = [
- "test_ukm_service.cc",
- "test_ukm_service.h",
+ "test_ukm_recorder.cc",
+ "test_ukm_recorder.h",
]
public_deps = [
":ukm",
+ "//components/metrics/proto",
]
deps = [
"//base",

Powered by Google App Engine
This is Rietveld 408576698