| 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 "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 "drive_metrics_provider.cc", |
| 21 "drive_metrics_provider.h", |
| 22 "drive_metrics_provider_android.cc", |
| 23 "drive_metrics_provider_ios.mm", |
| 24 "drive_metrics_provider_linux.cc", |
| 25 "drive_metrics_provider_mac.mm", |
| 26 "drive_metrics_provider_win.cc", |
| 20 "histogram_encoder.cc", | 27 "histogram_encoder.cc", |
| 21 "histogram_encoder.h", | 28 "histogram_encoder.h", |
| 22 "machine_id_provider.h", | 29 "machine_id_provider.h", |
| 23 "machine_id_provider_stub.cc", | 30 "machine_id_provider_stub.cc", |
| 24 "machine_id_provider_win.cc", | 31 "machine_id_provider_win.cc", |
| 25 "metrics_hashes.cc", | 32 "metrics_hashes.cc", |
| 26 "metrics_hashes.h", | 33 "metrics_hashes.h", |
| 27 "metrics_log.cc", | 34 "metrics_log.cc", |
| 28 "metrics_log.h", | 35 "metrics_log.h", |
| 29 "metrics_log_manager.cc", | 36 "metrics_log_manager.cc", |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 "//base", | 172 "//base", |
| 166 ] | 173 ] |
| 167 } | 174 } |
| 168 } | 175 } |
| 169 | 176 |
| 170 source_set("unit_tests") { | 177 source_set("unit_tests") { |
| 171 testonly = true | 178 testonly = true |
| 172 sources = [ | 179 sources = [ |
| 173 "compression_utils_unittest.cc", | 180 "compression_utils_unittest.cc", |
| 174 "daily_event_unittest.cc", | 181 "daily_event_unittest.cc", |
| 182 "drive_metrics_provider_unittest.cc", |
| 175 "histogram_encoder_unittest.cc", | 183 "histogram_encoder_unittest.cc", |
| 176 "machine_id_provider_win_unittest.cc", | 184 "machine_id_provider_win_unittest.cc", |
| 177 "metrics_hashes_unittest.cc", | 185 "metrics_hashes_unittest.cc", |
| 178 "metrics_log_manager_unittest.cc", | 186 "metrics_log_manager_unittest.cc", |
| 179 "metrics_log_unittest.cc", | 187 "metrics_log_unittest.cc", |
| 180 "metrics_reporting_scheduler_unittest.cc", | 188 "metrics_reporting_scheduler_unittest.cc", |
| 181 "metrics_service_unittest.cc", | 189 "metrics_service_unittest.cc", |
| 182 "metrics_state_manager_unittest.cc", | 190 "metrics_state_manager_unittest.cc", |
| 183 "persisted_logs_unittest.cc", | 191 "persisted_logs_unittest.cc", |
| 184 "profiler/profiler_metrics_provider_unittest.cc", | 192 "profiler/profiler_metrics_provider_unittest.cc", |
| 185 "profiler/tracking_synchronizer_unittest.cc", | 193 "profiler/tracking_synchronizer_unittest.cc", |
| 186 ] | 194 ] |
| 187 | 195 |
| 188 deps = [ | 196 deps = [ |
| 189 ":metrics", | 197 ":metrics", |
| 190 ":profiler", | 198 ":profiler", |
| 191 ":test_support", | 199 ":test_support", |
| 192 "//base:prefs_test_support", | 200 "//base:prefs_test_support", |
| 193 "//base/test:test_support", | 201 "//base/test:test_support", |
| 194 "//components/variations", | 202 "//components/variations", |
| 195 "//content/public/common", | 203 "//content/public/common", |
| 196 "//testing/gtest", | 204 "//testing/gtest", |
| 197 ] | 205 ] |
| 198 } | 206 } |
| 199 # TODO(GYP): metrics_chromeos | 207 # TODO(GYP): metrics_chromeos |
| OLD | NEW |