| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "reporting_service.h", | 81 "reporting_service.h", |
| 82 "stability_metrics_helper.cc", | 82 "stability_metrics_helper.cc", |
| 83 "stability_metrics_helper.h", | 83 "stability_metrics_helper.h", |
| 84 "stability_metrics_provider.cc", | 84 "stability_metrics_provider.cc", |
| 85 "stability_metrics_provider.h", | 85 "stability_metrics_provider.h", |
| 86 "system_memory_stats_recorder.h", | 86 "system_memory_stats_recorder.h", |
| 87 "system_memory_stats_recorder_linux.cc", | 87 "system_memory_stats_recorder_linux.cc", |
| 88 "system_memory_stats_recorder_win.cc", | 88 "system_memory_stats_recorder_win.cc", |
| 89 "url_constants.cc", | 89 "url_constants.cc", |
| 90 "url_constants.h", | 90 "url_constants.h", |
| 91 "version_utils.cc", |
| 92 "version_utils.h", |
| 91 ] | 93 ] |
| 92 | 94 |
| 93 public_deps = [ | 95 public_deps = [ |
| 94 "//components/metrics/proto", | 96 "//components/metrics/proto", |
| 95 ] | 97 ] |
| 96 | 98 |
| 97 deps = [ | 99 deps = [ |
| 98 ":call_stack_profile_params", | 100 ":call_stack_profile_params", |
| 99 "//base", | 101 "//base", |
| 100 "//base:base_static", | 102 "//base:base_static", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 } | 144 } |
| 143 | 145 |
| 144 static_library("net") { | 146 static_library("net") { |
| 145 sources = [ | 147 sources = [ |
| 146 "net/cellular_logic_helper.cc", | 148 "net/cellular_logic_helper.cc", |
| 147 "net/cellular_logic_helper.h", | 149 "net/cellular_logic_helper.h", |
| 148 "net/net_metrics_log_uploader.cc", | 150 "net/net_metrics_log_uploader.cc", |
| 149 "net/net_metrics_log_uploader.h", | 151 "net/net_metrics_log_uploader.h", |
| 150 "net/network_metrics_provider.cc", | 152 "net/network_metrics_provider.cc", |
| 151 "net/network_metrics_provider.h", | 153 "net/network_metrics_provider.h", |
| 152 "net/version_utils.cc", | |
| 153 "net/version_utils.h", | |
| 154 "net/wifi_access_point_info_provider.cc", | 154 "net/wifi_access_point_info_provider.cc", |
| 155 "net/wifi_access_point_info_provider.h", | 155 "net/wifi_access_point_info_provider.h", |
| 156 ] | 156 ] |
| 157 | 157 |
| 158 public_deps = [ | 158 public_deps = [ |
| 159 ":metrics", | 159 ":metrics", |
| 160 ] | 160 ] |
| 161 allow_circular_includes_from = [ ":metrics" ] | 161 allow_circular_includes_from = [ ":metrics" ] |
| 162 | 162 |
| 163 deps = [ | 163 deps = [ |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 # Convenience testing target | 404 # Convenience testing target |
| 405 test("metrics_unittests") { | 405 test("metrics_unittests") { |
| 406 sources = [ | 406 sources = [ |
| 407 "//components/test/run_all_unittests.cc", | 407 "//components/test/run_all_unittests.cc", |
| 408 ] | 408 ] |
| 409 deps = [ | 409 deps = [ |
| 410 ":unit_tests", | 410 ":unit_tests", |
| 411 "//components/test:test_support", | 411 "//components/test:test_support", |
| 412 ] | 412 ] |
| 413 } | 413 } |
| OLD | NEW |