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

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

Issue 1075503002: Move histogram_manager from components/metrics to components/cronet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Raman's comments Created 5 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
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/histogram_manager.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 "call_stack_profile_metrics_provider.cc", 8 "call_stack_profile_metrics_provider.cc",
9 "call_stack_profile_metrics_provider.h", 9 "call_stack_profile_metrics_provider.h",
10 "clean_exit_beacon.cc", 10 "clean_exit_beacon.cc",
11 "clean_exit_beacon.h", 11 "clean_exit_beacon.h",
12 "client_info.cc", 12 "client_info.cc",
13 "client_info.h", 13 "client_info.h",
14 "cloned_install_detector.cc", 14 "cloned_install_detector.cc",
15 "cloned_install_detector.h", 15 "cloned_install_detector.h",
16 "compression_utils.cc", 16 "compression_utils.cc",
17 "compression_utils.h", 17 "compression_utils.h",
18 "daily_event.cc", 18 "daily_event.cc",
19 "daily_event.h", 19 "daily_event.h",
20 "histogram_encoder.cc", 20 "histogram_encoder.cc",
21 "histogram_encoder.h", 21 "histogram_encoder.h",
22 "histogram_manager.cc",
23 "histogram_manager.h",
24 "machine_id_provider.h", 22 "machine_id_provider.h",
25 "machine_id_provider_stub.cc", 23 "machine_id_provider_stub.cc",
26 "machine_id_provider_win.cc", 24 "machine_id_provider_win.cc",
27 "metrics_hashes.cc", 25 "metrics_hashes.cc",
28 "metrics_hashes.h", 26 "metrics_hashes.h",
29 "metrics_log.cc", 27 "metrics_log.cc",
30 "metrics_log.h", 28 "metrics_log.h",
31 "metrics_log_manager.cc", 29 "metrics_log_manager.cc",
32 "metrics_log_manager.h", 30 "metrics_log_manager.h",
33 "metrics_log_uploader.cc", 31 "metrics_log_uploader.cc",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 ] 163 ]
166 } 164 }
167 } 165 }
168 166
169 source_set("unit_tests") { 167 source_set("unit_tests") {
170 testonly = true 168 testonly = true
171 sources = [ 169 sources = [
172 "compression_utils_unittest.cc", 170 "compression_utils_unittest.cc",
173 "daily_event_unittest.cc", 171 "daily_event_unittest.cc",
174 "histogram_encoder_unittest.cc", 172 "histogram_encoder_unittest.cc",
175 "histogram_manager_unittest.cc",
176 "machine_id_provider_win_unittest.cc", 173 "machine_id_provider_win_unittest.cc",
177 "metrics_hashes_unittest.cc", 174 "metrics_hashes_unittest.cc",
178 "metrics_log_manager_unittest.cc", 175 "metrics_log_manager_unittest.cc",
179 "metrics_log_unittest.cc", 176 "metrics_log_unittest.cc",
180 "metrics_reporting_scheduler_unittest.cc", 177 "metrics_reporting_scheduler_unittest.cc",
181 "metrics_service_unittest.cc", 178 "metrics_service_unittest.cc",
182 "metrics_state_manager_unittest.cc", 179 "metrics_state_manager_unittest.cc",
183 "persisted_logs_unittest.cc", 180 "persisted_logs_unittest.cc",
184 "profiler/profiler_metrics_provider_unittest.cc", 181 "profiler/profiler_metrics_provider_unittest.cc",
185 "profiler/tracking_synchronizer_unittest.cc", 182 "profiler/tracking_synchronizer_unittest.cc",
186 ] 183 ]
187 184
188 deps = [ 185 deps = [
189 ":metrics", 186 ":metrics",
190 ":profiler", 187 ":profiler",
191 ":test_support", 188 ":test_support",
192 "//base:prefs_test_support", 189 "//base:prefs_test_support",
193 "//base/test:test_support", 190 "//base/test:test_support",
194 "//components/variations", 191 "//components/variations",
195 "//content/public/common", 192 "//content/public/common",
196 "//testing/gtest", 193 "//testing/gtest",
197 ] 194 ]
198 } 195 }
199 # TODO(GYP): metrics_chromeos 196 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/histogram_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698