| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 "metrics_state_manager.h", | 70 "metrics_state_manager.h", |
| 71 "metrics_switches.cc", | 71 "metrics_switches.cc", |
| 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 "persistent_system_profile.cc", |
| 81 "persistent_system_profile.h", |
| 80 "reporting_service.cc", | 82 "reporting_service.cc", |
| 81 "reporting_service.h", | 83 "reporting_service.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", |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 "histogram_encoder_unittest.cc", | 347 "histogram_encoder_unittest.cc", |
| 346 "machine_id_provider_win_unittest.cc", | 348 "machine_id_provider_win_unittest.cc", |
| 347 "metrics_log_manager_unittest.cc", | 349 "metrics_log_manager_unittest.cc", |
| 348 "metrics_log_store_unittest.cc", | 350 "metrics_log_store_unittest.cc", |
| 349 "metrics_log_unittest.cc", | 351 "metrics_log_unittest.cc", |
| 350 "metrics_service_unittest.cc", | 352 "metrics_service_unittest.cc", |
| 351 "metrics_state_manager_unittest.cc", | 353 "metrics_state_manager_unittest.cc", |
| 352 "net/net_metrics_log_uploader_unittest.cc", | 354 "net/net_metrics_log_uploader_unittest.cc", |
| 353 "net/network_metrics_provider_unittest.cc", | 355 "net/network_metrics_provider_unittest.cc", |
| 354 "persisted_logs_unittest.cc", | 356 "persisted_logs_unittest.cc", |
| 357 "persistent_system_profile_unittest.cc", |
| 355 "profiler/profiler_metrics_provider_unittest.cc", | 358 "profiler/profiler_metrics_provider_unittest.cc", |
| 356 "profiler/tracking_synchronizer_unittest.cc", | 359 "profiler/tracking_synchronizer_unittest.cc", |
| 357 "single_sample_metrics_factory_impl_unittest.cc", | 360 "single_sample_metrics_factory_impl_unittest.cc", |
| 358 "stability_metrics_helper_unittest.cc", | 361 "stability_metrics_helper_unittest.cc", |
| 359 "stability_metrics_provider_unittest.cc", | 362 "stability_metrics_provider_unittest.cc", |
| 360 "ui/screen_info_metrics_provider_unittest.cc", | 363 "ui/screen_info_metrics_provider_unittest.cc", |
| 361 ] | 364 ] |
| 362 | 365 |
| 363 deps = [ | 366 deps = [ |
| 364 ":call_stack_profile_params", | 367 ":call_stack_profile_params", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 # Convenience testing target | 407 # Convenience testing target |
| 405 test("metrics_unittests") { | 408 test("metrics_unittests") { |
| 406 sources = [ | 409 sources = [ |
| 407 "//components/test/run_all_unittests.cc", | 410 "//components/test/run_all_unittests.cc", |
| 408 ] | 411 ] |
| 409 deps = [ | 412 deps = [ |
| 410 ":unit_tests", | 413 ":unit_tests", |
| 411 "//components/test:test_support", | 414 "//components/test:test_support", |
| 412 ] | 415 ] |
| 413 } | 416 } |
| OLD | NEW |