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 # GYP version: components/metrics.gypi:metrics | 5 # GYP version: components/metrics.gypi:metrics |
6 source_set("metrics") { | 6 source_set("metrics") { |
7 sources = [ | 7 sources = [ |
8 "call_stack_profile_metrics_provider.cc", | 8 "call_stack_profile_metrics_provider.cc", |
9 "call_stack_profile_metrics_provider.h", | 9 "call_stack_profile_metrics_provider.h", |
10 "clean_exit_beacon.cc", | 10 "clean_exit_beacon.cc", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "metrics_service_accessor.cc", | 46 "metrics_service_accessor.cc", |
47 "metrics_service_accessor.h", | 47 "metrics_service_accessor.h", |
48 "metrics_service_client.cc", | 48 "metrics_service_client.cc", |
49 "metrics_service_client.h", | 49 "metrics_service_client.h", |
50 "metrics_state_manager.cc", | 50 "metrics_state_manager.cc", |
51 "metrics_state_manager.h", | 51 "metrics_state_manager.h", |
52 "metrics_switches.cc", | 52 "metrics_switches.cc", |
53 "metrics_switches.h", | 53 "metrics_switches.h", |
54 "persisted_logs.cc", | 54 "persisted_logs.cc", |
55 "persisted_logs.h", | 55 "persisted_logs.h", |
| 56 "stability_metrics_helper.cc", |
| 57 "stability_metrics_helper.h", |
| 58 "system_memory_stats_recorder.h", |
| 59 "system_memory_stats_recorder_linux.cc", |
| 60 "system_memory_stats_recorder_win.cc", |
56 "url_constants.cc", | 61 "url_constants.cc", |
57 "url_constants.h", | 62 "url_constants.h", |
58 ] | 63 ] |
59 | 64 |
60 public_deps = [ | 65 public_deps = [ |
61 "//components/metrics/proto", | 66 "//components/metrics/proto", |
62 ] | 67 ] |
63 deps = [ | 68 deps = [ |
64 "//base", | 69 "//base", |
65 "//base:i18n", | 70 "//base:i18n", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 "histogram_encoder_unittest.cc", | 191 "histogram_encoder_unittest.cc", |
187 "machine_id_provider_win_unittest.cc", | 192 "machine_id_provider_win_unittest.cc", |
188 "metrics_hashes_unittest.cc", | 193 "metrics_hashes_unittest.cc", |
189 "metrics_log_manager_unittest.cc", | 194 "metrics_log_manager_unittest.cc", |
190 "metrics_log_unittest.cc", | 195 "metrics_log_unittest.cc", |
191 "metrics_reporting_scheduler_unittest.cc", | 196 "metrics_reporting_scheduler_unittest.cc", |
192 "metrics_service_unittest.cc", | 197 "metrics_service_unittest.cc", |
193 "metrics_state_manager_unittest.cc", | 198 "metrics_state_manager_unittest.cc", |
194 "net/net_metrics_log_uploader_unittest.cc", | 199 "net/net_metrics_log_uploader_unittest.cc", |
195 "persisted_logs_unittest.cc", | 200 "persisted_logs_unittest.cc", |
| 201 "stability_metrics_helper_unittest.cc", |
196 ] | 202 ] |
197 | 203 |
198 deps = [ | 204 deps = [ |
199 ":metrics", | 205 ":metrics", |
200 ":net", | 206 ":net", |
201 ":test_support", | 207 ":test_support", |
202 "//base:prefs_test_support", | 208 "//base:prefs_test_support", |
203 "//base/test:test_support", | 209 "//base/test:test_support", |
204 "//components/variations", | 210 "//components/variations", |
205 "//testing/gtest", | 211 "//testing/gtest", |
(...skipping 11 matching lines...) Expand all Loading... |
217 "profiler/tracking_synchronizer_unittest.cc", | 223 "profiler/tracking_synchronizer_unittest.cc", |
218 ] | 224 ] |
219 deps += [ | 225 deps += [ |
220 ":gpu", | 226 ":gpu", |
221 ":profiler", | 227 ":profiler", |
222 "//content/public/common", | 228 "//content/public/common", |
223 ] | 229 ] |
224 } | 230 } |
225 } | 231 } |
226 # TODO(GYP): metrics_chromeos | 232 # TODO(GYP): metrics_chromeos |
OLD | NEW |