| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "histogram_manager_unittest.cc", | 175 "histogram_manager_unittest.cc", |
| 176 "machine_id_provider_win_unittest.cc", | 176 "machine_id_provider_win_unittest.cc", |
| 177 "metrics_hashes_unittest.cc", | 177 "metrics_hashes_unittest.cc", |
| 178 "metrics_log_manager_unittest.cc", | 178 "metrics_log_manager_unittest.cc", |
| 179 "metrics_log_unittest.cc", | 179 "metrics_log_unittest.cc", |
| 180 "metrics_reporting_scheduler_unittest.cc", | 180 "metrics_reporting_scheduler_unittest.cc", |
| 181 "metrics_service_unittest.cc", | 181 "metrics_service_unittest.cc", |
| 182 "metrics_state_manager_unittest.cc", | 182 "metrics_state_manager_unittest.cc", |
| 183 "persisted_logs_unittest.cc", | 183 "persisted_logs_unittest.cc", |
| 184 "profiler/profiler_metrics_provider_unittest.cc", | 184 "profiler/profiler_metrics_provider_unittest.cc", |
| 185 "profiler/tracking_synchronizer_unittest.cc", |
| 185 ] | 186 ] |
| 186 | 187 |
| 187 deps = [ | 188 deps = [ |
| 188 ":metrics", | 189 ":metrics", |
| 189 ":profiler", | 190 ":profiler", |
| 190 ":test_support", | 191 ":test_support", |
| 191 "//base:prefs_test_support", | 192 "//base:prefs_test_support", |
| 192 "//base/test:test_support", | 193 "//base/test:test_support", |
| 193 "//components/variations", | 194 "//components/variations", |
| 194 "//content/public/common", | 195 "//content/public/common", |
| 195 "//testing/gtest", | 196 "//testing/gtest", |
| 196 ] | 197 ] |
| 197 } | 198 } |
| 198 # TODO(GYP): metrics_chromeos | 199 # TODO(GYP): metrics_chromeos |
| OLD | NEW |