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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'metrics', 8 'target_name': 'metrics',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '..', 11 '..',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 ], 15 ],
16 'sources': [ 16 'sources': [
17 'metrics/metrics_hashes.cc', 17 'metrics/metrics_hashes.cc',
18 'metrics/metrics_hashes.h', 18 'metrics/metrics_hashes.h',
19 'metrics/metrics_utils_chromeos.cc',
Ben Chan 2014/04/18 20:27:08 nit: fix indentation
20 'metrics/metrics_utils_chromeos.h',
Ben Chan 2014/04/18 20:27:08 I noticed some other parts of chrome uses a chrome
21 'metrics/metric_sample_chromeos.cc',
22 'metrics/metric_sample_chromeos.h',
23 'metrics/crash_sample_chromeos.cc',
24 'metrics/crash_sample_chromeos.h',
25 'metrics/histogram_sample_chromeos.cc',
26 'metrics/histogram_sample_chromeos.h',
27 'metrics/linearhistogram_sample_chromeos.cc',
28 'metrics/linearhistogram_sample_chromeos.h',
29 'metrics/sparsehistogram_sample_chromeos.cc',
30 'metrics/sparsehistogram_sample_chromeos.h',
31 'metrics/useraction_sample_chromeos.cc',
32 'metrics/useraction_sample_chromeos.cc',
19 ], 33 ],
20 }, 34 'conditions': [
35 ['chromeos==1', {
36 'sources/': [ ['include', '_chromeos\\.cc$']]
37 } ] ]
38 }
21 ], 39 ],
40
22 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698