| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 # The Url-Keyed Metrics (UKM) service is responsible for gathering and | 7 # The Url-Keyed Metrics (UKM) service is responsible for gathering and |
| 8 # uploading reports that contain fine grained performance metrics including | 8 # uploading reports that contain fine grained performance metrics including |
| 9 # URLs for top-level navigations. | 9 # URLs for top-level navigations. |
| 10 static_library("ukm") { | 10 static_library("ukm") { |
| 11 sources = [ | 11 sources = [ |
| 12 "metrics_reporting_scheduler.cc", | |
| 13 "metrics_reporting_scheduler.h", | |
| 14 "persisted_logs_metrics_impl.cc", | 12 "persisted_logs_metrics_impl.cc", |
| 15 "persisted_logs_metrics_impl.h", | 13 "persisted_logs_metrics_impl.h", |
| 16 "ukm_entry.cc", | 14 "ukm_entry.cc", |
| 17 "ukm_entry.h", | 15 "ukm_entry.h", |
| 18 "ukm_entry_builder.cc", | 16 "ukm_entry_builder.cc", |
| 19 "ukm_entry_builder.h", | 17 "ukm_entry_builder.h", |
| 20 "ukm_pref_names.cc", | 18 "ukm_pref_names.cc", |
| 21 "ukm_pref_names.h", | 19 "ukm_pref_names.h", |
| 20 "ukm_reporting_service.cc", |
| 21 "ukm_reporting_service.h", |
| 22 "ukm_rotation_scheduler.cc", |
| 23 "ukm_rotation_scheduler.h", |
| 22 "ukm_service.cc", | 24 "ukm_service.cc", |
| 23 "ukm_service.h", | 25 "ukm_service.h", |
| 24 "ukm_source.cc", | 26 "ukm_source.cc", |
| 25 "ukm_source.h", | 27 "ukm_source.h", |
| 26 ] | 28 ] |
| 27 | 29 |
| 28 deps = [ | 30 deps = [ |
| 29 "//base", | 31 "//base", |
| 30 "//components/data_use_measurement/core", | 32 "//components/data_use_measurement/core", |
| 31 "//components/metrics", | 33 "//components/metrics", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 97 |
| 96 # Convenience testing target | 98 # Convenience testing target |
| 97 test("ukm_unittests") { | 99 test("ukm_unittests") { |
| 98 deps = [ | 100 deps = [ |
| 99 ":unit_tests", | 101 ":unit_tests", |
| 100 "//base", | 102 "//base", |
| 101 "//base/test:run_all_unittests", | 103 "//base/test:run_all_unittests", |
| 102 "//base/test:test_support", | 104 "//base/test:test_support", |
| 103 ] | 105 ] |
| 104 } | 106 } |
| OLD | NEW |