| 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", |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 ] | 170 ] |
| 171 deps = [ | 171 deps = [ |
| 172 "//base", | 172 "//base", |
| 173 ] | 173 ] |
| 174 } | 174 } |
| 175 } | 175 } |
| 176 | 176 |
| 177 source_set("unit_tests") { | 177 source_set("unit_tests") { |
| 178 testonly = true | 178 testonly = true |
| 179 sources = [ | 179 sources = [ |
| 180 "call_stack_profile_metrics_provider_unittest.cc", |
| 180 "compression_utils_unittest.cc", | 181 "compression_utils_unittest.cc", |
| 181 "daily_event_unittest.cc", | 182 "daily_event_unittest.cc", |
| 182 "drive_metrics_provider_unittest.cc", | 183 "drive_metrics_provider_unittest.cc", |
| 184 "gpu/gpu_metrics_provider_unittest.cc", |
| 183 "histogram_encoder_unittest.cc", | 185 "histogram_encoder_unittest.cc", |
| 184 "machine_id_provider_win_unittest.cc", | 186 "machine_id_provider_win_unittest.cc", |
| 185 "metrics_hashes_unittest.cc", | 187 "metrics_hashes_unittest.cc", |
| 186 "metrics_log_manager_unittest.cc", | 188 "metrics_log_manager_unittest.cc", |
| 187 "metrics_log_unittest.cc", | 189 "metrics_log_unittest.cc", |
| 188 "metrics_reporting_scheduler_unittest.cc", | 190 "metrics_reporting_scheduler_unittest.cc", |
| 189 "metrics_service_unittest.cc", | 191 "metrics_service_unittest.cc", |
| 190 "metrics_state_manager_unittest.cc", | 192 "metrics_state_manager_unittest.cc", |
| 193 "net/net_metrics_log_uploader_unittest.cc", |
| 191 "persisted_logs_unittest.cc", | 194 "persisted_logs_unittest.cc", |
| 192 "profiler/profiler_metrics_provider_unittest.cc", | 195 "profiler/profiler_metrics_provider_unittest.cc", |
| 193 "profiler/tracking_synchronizer_unittest.cc", | 196 "profiler/tracking_synchronizer_unittest.cc", |
| 194 ] | 197 ] |
| 195 | 198 |
| 196 deps = [ | 199 deps = [ |
| 200 ":gpu", |
| 197 ":metrics", | 201 ":metrics", |
| 202 ":net", |
| 198 ":profiler", | 203 ":profiler", |
| 199 ":test_support", | 204 ":test_support", |
| 200 "//base:prefs_test_support", | 205 "//base:prefs_test_support", |
| 201 "//base/test:test_support", | 206 "//base/test:test_support", |
| 202 "//components/variations", | 207 "//components/variations", |
| 203 "//content/public/common", | 208 "//content/public/common", |
| 204 "//testing/gtest", | 209 "//testing/gtest", |
| 205 ] | 210 ] |
| 206 } | 211 } |
| 207 # TODO(GYP): metrics_chromeos | 212 # TODO(GYP): metrics_chromeos |
| OLD | NEW |