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

Unified Diff: components/metrics.gypi

Issue 239093004: Move part of metrics from chrome/common to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unittest that broke after rebase. Created 6 years, 8 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/metrics.gypi
diff --git a/components/metrics.gypi b/components/metrics.gypi
index 6036cae0cf91e3ef123fbdb65ffb35b7a63ebd35..38995d6cd77b0117c19a4bc2f57ebaa44dd538a7 100644
--- a/components/metrics.gypi
+++ b/components/metrics.gypi
@@ -16,7 +16,23 @@
'sources': [
'metrics/metrics_hashes.cc',
'metrics/metrics_hashes.h',
+ 'metrics/metrics_log_base.cc',
+ 'metrics/metrics_log_base.h',
+ 'metrics/metrics_log_manager.cc',
+ 'metrics/metrics_log_manager.h',
+ 'metrics/proto/chrome_user_metrics_extension.proto',
+ 'metrics/proto/histogram_event.proto',
+ 'metrics/proto/omnibox_event.proto',
+ 'metrics/proto/perf_data.proto',
+ 'metrics/proto/profiler_event.proto',
+ 'metrics/proto/system_profile.proto',
+ 'metrics/proto/user_action_event.proto',
Ilya Sherman 2014/04/15 23:00:40 The proto files should be in the proto target, not
],
+ 'variables': {
+ 'proto_in_dir': 'metrics/proto',
+ 'proto_out_dir': 'components/metrics/proto',
+ },
+ 'includes': [ '../build/protoc.gypi' ],
},
],
}

Powered by Google App Engine
This is Rietveld 408576698