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

Unified Diff: components/metrics.gypi

Issue 227873002: Create a histogram serialization mechanism in components/metrics (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moving to components instead of base. Adding sanity checks. Fixing lint 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..e32a953bda7154e8a513a050612c735f5ff21902 100644
--- a/components/metrics.gypi
+++ b/components/metrics.gypi
@@ -16,7 +16,26 @@
'sources': [
'metrics/metrics_hashes.cc',
'metrics/metrics_hashes.h',
+ 'metrics/metrics_utils_chromeos.cc',
Ben Chan 2014/04/18 20:27:08 nit: fix indentation
+ 'metrics/metrics_utils_chromeos.h',
Ben Chan 2014/04/18 20:27:08 I noticed some other parts of chrome uses a chrome
+ 'metrics/metric_sample_chromeos.cc',
+ 'metrics/metric_sample_chromeos.h',
+ 'metrics/crash_sample_chromeos.cc',
+ 'metrics/crash_sample_chromeos.h',
+ 'metrics/histogram_sample_chromeos.cc',
+ 'metrics/histogram_sample_chromeos.h',
+ 'metrics/linearhistogram_sample_chromeos.cc',
+ 'metrics/linearhistogram_sample_chromeos.h',
+ 'metrics/sparsehistogram_sample_chromeos.cc',
+ 'metrics/sparsehistogram_sample_chromeos.h',
+ 'metrics/useraction_sample_chromeos.cc',
+ 'metrics/useraction_sample_chromeos.cc',
],
- },
+ 'conditions': [
+ ['chromeos==1', {
+ 'sources/': [ ['include', '_chromeos\\.cc$']]
+ } ] ]
+ }
],
+
}

Powered by Google App Engine
This is Rietveld 408576698