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

Side by Side Diff: components/metrics/BUILD.gn

Issue 794493002: Add UMA Histogram Manager to Cronet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disabled flaky HistogramBucketFields unittest Created 6 years 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
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/histogram_encoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GYP version: components/metrics.gypi:metrics 5 # GYP version: components/metrics.gypi:metrics
6 source_set("metrics") { 6 source_set("metrics") {
7 sources = [ 7 sources = [
8 "clean_exit_beacon.cc", 8 "clean_exit_beacon.cc",
9 "clean_exit_beacon.h", 9 "clean_exit_beacon.h",
10 "client_info.cc", 10 "client_info.cc",
11 "client_info.h", 11 "client_info.h",
12 "cloned_install_detector.cc", 12 "cloned_install_detector.cc",
13 "cloned_install_detector.h", 13 "cloned_install_detector.h",
14 "compression_utils.cc", 14 "compression_utils.cc",
15 "compression_utils.h", 15 "compression_utils.h",
16 "daily_event.cc", 16 "daily_event.cc",
17 "daily_event.h", 17 "daily_event.h",
18 "histogram_encoder.cc",
19 "histogram_encoder.h",
20 "histogram_manager.cc",
21 "histogram_manager.h",
18 "machine_id_provider.h", 22 "machine_id_provider.h",
19 "machine_id_provider_stub.cc", 23 "machine_id_provider_stub.cc",
20 "machine_id_provider_win.cc", 24 "machine_id_provider_win.cc",
21 "metrics_hashes.cc", 25 "metrics_hashes.cc",
22 "metrics_hashes.h", 26 "metrics_hashes.h",
23 "metrics_log.cc", 27 "metrics_log.cc",
24 "metrics_log.h", 28 "metrics_log.h",
25 "metrics_log_manager.cc", 29 "metrics_log_manager.cc",
26 "metrics_log_manager.h", 30 "metrics_log_manager.h",
27 "metrics_log_uploader.cc", 31 "metrics_log_uploader.cc",
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 "//base", 156 "//base",
153 ] 157 ]
154 } 158 }
155 } 159 }
156 160
157 source_set("unit_tests") { 161 source_set("unit_tests") {
158 testonly = true 162 testonly = true
159 sources = [ 163 sources = [
160 "compression_utils_unittest.cc", 164 "compression_utils_unittest.cc",
161 "daily_event_unittest.cc", 165 "daily_event_unittest.cc",
166 "histogram_encoder_unittest.cc",
167 "histogram_manager_unittest.cc",
162 "machine_id_provider_win_unittest.cc", 168 "machine_id_provider_win_unittest.cc",
163 "metrics_hashes_unittest.cc", 169 "metrics_hashes_unittest.cc",
164 "metrics_log_manager_unittest.cc", 170 "metrics_log_manager_unittest.cc",
165 "metrics_log_unittest.cc", 171 "metrics_log_unittest.cc",
166 "metrics_reporting_scheduler_unittest.cc", 172 "metrics_reporting_scheduler_unittest.cc",
167 "metrics_service_unittest.cc", 173 "metrics_service_unittest.cc",
168 "metrics_state_manager_unittest.cc", 174 "metrics_state_manager_unittest.cc",
169 "persisted_logs_unittest.cc", 175 "persisted_logs_unittest.cc",
170 "profiler/profiler_metrics_provider_unittest.cc", 176 "profiler/profiler_metrics_provider_unittest.cc",
171 ] 177 ]
172 178
173 deps = [ 179 deps = [
174 ":metrics", 180 ":metrics",
175 ":profiler", 181 ":profiler",
176 ":test_support", 182 ":test_support",
177 "//base:prefs_test_support", 183 "//base:prefs_test_support",
178 "//base/test:test_support", 184 "//base/test:test_support",
179 "//components/variations", 185 "//components/variations",
180 "//content/public/common", 186 "//content/public/common",
181 "//testing/gtest", 187 "//testing/gtest",
182 ] 188 ]
183 } 189 }
184 # TODO(GYP): metrics_chromeos 190 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/histogram_encoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698