| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 static_library("metrics") { | 7 static_library("metrics") { |
| 8 sources = [ | 8 sources = [ |
| 9 "call_stack_profile_metrics_provider.cc", | 9 "call_stack_profile_metrics_provider.cc", |
| 10 "call_stack_profile_metrics_provider.h", | 10 "call_stack_profile_metrics_provider.h", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 "metrics_log_store.h", | 47 "metrics_log_store.h", |
| 48 "metrics_log_uploader.h", | 48 "metrics_log_uploader.h", |
| 49 "metrics_pref_names.cc", | 49 "metrics_pref_names.cc", |
| 50 "metrics_pref_names.h", | 50 "metrics_pref_names.h", |
| 51 "metrics_provider.cc", | 51 "metrics_provider.cc", |
| 52 "metrics_provider.h", | 52 "metrics_provider.h", |
| 53 "metrics_reporting_default_state.cc", | 53 "metrics_reporting_default_state.cc", |
| 54 "metrics_reporting_default_state.h", | 54 "metrics_reporting_default_state.h", |
| 55 "metrics_reporting_scheduler.cc", | 55 "metrics_reporting_scheduler.cc", |
| 56 "metrics_reporting_scheduler.h", | 56 "metrics_reporting_scheduler.h", |
| 57 "metrics_reporting_service.cc", |
| 58 "metrics_reporting_service.h", |
| 57 "metrics_rotation_scheduler.cc", | 59 "metrics_rotation_scheduler.cc", |
| 58 "metrics_rotation_scheduler.h", | 60 "metrics_rotation_scheduler.h", |
| 59 "metrics_scheduler.cc", | 61 "metrics_scheduler.cc", |
| 60 "metrics_scheduler.h", | 62 "metrics_scheduler.h", |
| 61 "metrics_service.cc", | 63 "metrics_service.cc", |
| 62 "metrics_service.h", | 64 "metrics_service.h", |
| 63 "metrics_service_accessor.cc", | 65 "metrics_service_accessor.cc", |
| 64 "metrics_service_accessor.h", | 66 "metrics_service_accessor.h", |
| 65 "metrics_service_client.cc", | 67 "metrics_service_client.cc", |
| 66 "metrics_service_client.h", | 68 "metrics_service_client.h", |
| 67 "metrics_state_manager.cc", | 69 "metrics_state_manager.cc", |
| 68 "metrics_state_manager.h", | 70 "metrics_state_manager.h", |
| 69 "metrics_switches.cc", | 71 "metrics_switches.cc", |
| 70 "metrics_switches.h", | 72 "metrics_switches.h", |
| 71 "metrics_upload_scheduler.cc", | 73 "metrics_upload_scheduler.cc", |
| 72 "metrics_upload_scheduler.h", | 74 "metrics_upload_scheduler.h", |
| 73 "persisted_logs.cc", | 75 "persisted_logs.cc", |
| 74 "persisted_logs.h", | 76 "persisted_logs.h", |
| 75 "persisted_logs_metrics.h", | 77 "persisted_logs_metrics.h", |
| 76 "persisted_logs_metrics_impl.cc", | 78 "persisted_logs_metrics_impl.cc", |
| 77 "persisted_logs_metrics_impl.h", | 79 "persisted_logs_metrics_impl.h", |
| 80 "reporting_service.cc", |
| 81 "reporting_service.h", |
| 78 "stability_metrics_helper.cc", | 82 "stability_metrics_helper.cc", |
| 79 "stability_metrics_helper.h", | 83 "stability_metrics_helper.h", |
| 80 "stability_metrics_provider.cc", | 84 "stability_metrics_provider.cc", |
| 81 "stability_metrics_provider.h", | 85 "stability_metrics_provider.h", |
| 82 "system_memory_stats_recorder.h", | 86 "system_memory_stats_recorder.h", |
| 83 "system_memory_stats_recorder_linux.cc", | 87 "system_memory_stats_recorder_linux.cc", |
| 84 "system_memory_stats_recorder_win.cc", | 88 "system_memory_stats_recorder_win.cc", |
| 85 "url_constants.cc", | 89 "url_constants.cc", |
| 86 "url_constants.h", | 90 "url_constants.h", |
| 87 ] | 91 ] |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 # Convenience testing target | 384 # Convenience testing target |
| 381 test("metrics_unittests") { | 385 test("metrics_unittests") { |
| 382 sources = [ | 386 sources = [ |
| 383 "//components/test/run_all_unittests.cc", | 387 "//components/test/run_all_unittests.cc", |
| 384 ] | 388 ] |
| 385 deps = [ | 389 deps = [ |
| 386 ":unit_tests", | 390 ":unit_tests", |
| 387 "//components/test:test_support", | 391 "//components/test:test_support", |
| 388 ] | 392 ] |
| 389 } | 393 } |
| OLD | NEW |