| 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 27 matching lines...) Expand all Loading... |
| 38 "log_store.h", | 38 "log_store.h", |
| 39 "machine_id_provider.h", | 39 "machine_id_provider.h", |
| 40 "machine_id_provider_stub.cc", | 40 "machine_id_provider_stub.cc", |
| 41 "machine_id_provider_win.cc", | 41 "machine_id_provider_win.cc", |
| 42 "metrics_log.cc", | 42 "metrics_log.cc", |
| 43 "metrics_log.h", | 43 "metrics_log.h", |
| 44 "metrics_log_manager.cc", | 44 "metrics_log_manager.cc", |
| 45 "metrics_log_manager.h", | 45 "metrics_log_manager.h", |
| 46 "metrics_log_store.cc", | 46 "metrics_log_store.cc", |
| 47 "metrics_log_store.h", | 47 "metrics_log_store.h", |
| 48 "metrics_log_uploader.cc", | |
| 49 "metrics_log_uploader.h", | 48 "metrics_log_uploader.h", |
| 50 "metrics_pref_names.cc", | 49 "metrics_pref_names.cc", |
| 51 "metrics_pref_names.h", | 50 "metrics_pref_names.h", |
| 52 "metrics_provider.cc", | 51 "metrics_provider.cc", |
| 53 "metrics_provider.h", | 52 "metrics_provider.h", |
| 54 "metrics_reporting_default_state.cc", | 53 "metrics_reporting_default_state.cc", |
| 55 "metrics_reporting_default_state.h", | 54 "metrics_reporting_default_state.h", |
| 56 "metrics_reporting_scheduler.cc", | 55 "metrics_reporting_scheduler.cc", |
| 57 "metrics_reporting_scheduler.h", | 56 "metrics_reporting_scheduler.h", |
| 58 "metrics_rotation_scheduler.cc", | 57 "metrics_rotation_scheduler.cc", |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 # Convenience testing target | 380 # Convenience testing target |
| 382 test("metrics_unittests") { | 381 test("metrics_unittests") { |
| 383 sources = [ | 382 sources = [ |
| 384 "//components/test/run_all_unittests.cc", | 383 "//components/test/run_all_unittests.cc", |
| 385 ] | 384 ] |
| 386 deps = [ | 385 deps = [ |
| 387 ":unit_tests", | 386 ":unit_tests", |
| 388 "//components/test:test_support", | 387 "//components/test:test_support", |
| 389 ] | 388 ] |
| 390 } | 389 } |
| OLD | NEW |