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