| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "metrics_switches.h", | 72 "metrics_switches.h", |
| 73 "metrics_upload_scheduler.cc", | 73 "metrics_upload_scheduler.cc", |
| 74 "metrics_upload_scheduler.h", | 74 "metrics_upload_scheduler.h", |
| 75 "persisted_logs.cc", | 75 "persisted_logs.cc", |
| 76 "persisted_logs.h", | 76 "persisted_logs.h", |
| 77 "persisted_logs_metrics.h", | 77 "persisted_logs_metrics.h", |
| 78 "persisted_logs_metrics_impl.cc", | 78 "persisted_logs_metrics_impl.cc", |
| 79 "persisted_logs_metrics_impl.h", | 79 "persisted_logs_metrics_impl.h", |
| 80 "reporting_service.cc", | 80 "reporting_service.cc", |
| 81 "reporting_service.h", | 81 "reporting_service.h", |
| 82 "simple_metrics_log_uploader.cc", |
| 83 "simple_metrics_log_uploader.h", |
| 82 "stability_metrics_helper.cc", | 84 "stability_metrics_helper.cc", |
| 83 "stability_metrics_helper.h", | 85 "stability_metrics_helper.h", |
| 84 "stability_metrics_provider.cc", | 86 "stability_metrics_provider.cc", |
| 85 "stability_metrics_provider.h", | 87 "stability_metrics_provider.h", |
| 86 "system_memory_stats_recorder.h", | 88 "system_memory_stats_recorder.h", |
| 87 "system_memory_stats_recorder_linux.cc", | 89 "system_memory_stats_recorder_linux.cc", |
| 88 "system_memory_stats_recorder_win.cc", | 90 "system_memory_stats_recorder_win.cc", |
| 89 "url_constants.cc", | 91 "url_constants.cc", |
| 90 "url_constants.h", | 92 "url_constants.h", |
| 91 ] | 93 ] |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 # Convenience testing target | 386 # Convenience testing target |
| 385 test("metrics_unittests") { | 387 test("metrics_unittests") { |
| 386 sources = [ | 388 sources = [ |
| 387 "//components/test/run_all_unittests.cc", | 389 "//components/test/run_all_unittests.cc", |
| 388 ] | 390 ] |
| 389 deps = [ | 391 deps = [ |
| 390 ":unit_tests", | 392 ":unit_tests", |
| 391 "//components/test:test_support", | 393 "//components/test:test_support", |
| 392 ] | 394 ] |
| 393 } | 395 } |
| OLD | NEW |