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

Unified Diff: components/metrics.gypi

Issue 291153013: Make MetricsService upload logs through an interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Casts for win64 compile Created 6 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/metrics_log_uploader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics.gypi
===================================================================
--- components/metrics.gypi (revision 274045)
+++ components/metrics.gypi (working copy)
@@ -25,6 +25,8 @@
'metrics/metrics_hashes.h',
'metrics/metrics_log_base.cc',
'metrics/metrics_log_base.h',
+ 'metrics/metrics_log_uploader.cc',
+ 'metrics/metrics_log_uploader.h',
'metrics/metrics_log_manager.cc',
'metrics/metrics_log_manager.h',
'metrics/metrics_pref_names.cc',
@@ -51,6 +53,24 @@
],
},
{
+ 'target_name': 'metrics_net',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../net/net.gyp:net',
+ '../third_party/zlib/zlib.gyp:zlib',
+ 'metrics',
+ ],
+ 'sources': [
+ 'metrics/net/compression_utils.cc',
+ 'metrics/net/compression_utils.h',
+ 'metrics/net/net_metrics_log_uploader.cc',
+ 'metrics/net/net_metrics_log_uploader.h',
+ ],
+ },
+ {
# Protobuf compiler / generator for UMA (User Metrics Analysis).
'target_name': 'component_metrics_proto',
'type': 'static_library',
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/metrics_log_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698