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

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: Fix build errors 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
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 ":profiler", 179 ":profiler",
176 ":test_support", 180 ":test_support",
177 "//base:prefs_test_support", 181 "//base:prefs_test_support",
178 "//base/test:test_support", 182 "//base/test:test_support",
179 "//components/variations", 183 "//components/variations",
180 "//content/public/common", 184 "//content/public/common",
181 "//testing/gtest", 185 "//testing/gtest",
182 ] 186 ]
183 } 187 }
184 # TODO(GYP): metrics_chromeos 188 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698