| OLD | NEW |
| 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", | |
| 22 "machine_id_provider.h", | 18 "machine_id_provider.h", |
| 23 "machine_id_provider_stub.cc", | 19 "machine_id_provider_stub.cc", |
| 24 "machine_id_provider_win.cc", | 20 "machine_id_provider_win.cc", |
| 25 "metrics_hashes.cc", | 21 "metrics_hashes.cc", |
| 26 "metrics_hashes.h", | 22 "metrics_hashes.h", |
| 27 "metrics_log.cc", | 23 "metrics_log.cc", |
| 28 "metrics_log.h", | 24 "metrics_log.h", |
| 29 "metrics_log_manager.cc", | 25 "metrics_log_manager.cc", |
| 30 "metrics_log_manager.h", | 26 "metrics_log_manager.h", |
| 31 "metrics_log_uploader.cc", | 27 "metrics_log_uploader.cc", |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 "//base", | 152 "//base", |
| 157 ] | 153 ] |
| 158 } | 154 } |
| 159 } | 155 } |
| 160 | 156 |
| 161 source_set("unit_tests") { | 157 source_set("unit_tests") { |
| 162 testonly = true | 158 testonly = true |
| 163 sources = [ | 159 sources = [ |
| 164 "compression_utils_unittest.cc", | 160 "compression_utils_unittest.cc", |
| 165 "daily_event_unittest.cc", | 161 "daily_event_unittest.cc", |
| 166 "histogram_encoder_unittest.cc", | |
| 167 "histogram_manager_unittest.cc", | |
| 168 "machine_id_provider_win_unittest.cc", | 162 "machine_id_provider_win_unittest.cc", |
| 169 "metrics_hashes_unittest.cc", | 163 "metrics_hashes_unittest.cc", |
| 170 "metrics_log_manager_unittest.cc", | 164 "metrics_log_manager_unittest.cc", |
| 171 "metrics_log_unittest.cc", | 165 "metrics_log_unittest.cc", |
| 172 "metrics_reporting_scheduler_unittest.cc", | 166 "metrics_reporting_scheduler_unittest.cc", |
| 173 "metrics_service_unittest.cc", | 167 "metrics_service_unittest.cc", |
| 174 "metrics_state_manager_unittest.cc", | 168 "metrics_state_manager_unittest.cc", |
| 175 "persisted_logs_unittest.cc", | 169 "persisted_logs_unittest.cc", |
| 176 "profiler/profiler_metrics_provider_unittest.cc", | 170 "profiler/profiler_metrics_provider_unittest.cc", |
| 177 ] | 171 ] |
| 178 | 172 |
| 179 deps = [ | 173 deps = [ |
| 180 ":metrics", | 174 ":metrics", |
| 181 ":profiler", | 175 ":profiler", |
| 182 ":test_support", | 176 ":test_support", |
| 183 "//base:prefs_test_support", | 177 "//base:prefs_test_support", |
| 184 "//base/test:test_support", | 178 "//base/test:test_support", |
| 185 "//components/variations", | 179 "//components/variations", |
| 186 "//content/public/common", | 180 "//content/public/common", |
| 187 "//testing/gtest", | 181 "//testing/gtest", |
| 188 ] | 182 ] |
| 189 } | 183 } |
| 190 # TODO(GYP): metrics_chromeos | 184 # TODO(GYP): metrics_chromeos |
| OLD | NEW |