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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 "histogram_encoder_unittest.cc", | 194 "histogram_encoder_unittest.cc", |
190 "machine_id_provider_win_unittest.cc", | 195 "machine_id_provider_win_unittest.cc", |
191 "metrics_hashes_unittest.cc", | 196 "metrics_hashes_unittest.cc", |
192 "metrics_log_manager_unittest.cc", | 197 "metrics_log_manager_unittest.cc", |
193 "metrics_log_unittest.cc", | 198 "metrics_log_unittest.cc", |
194 "metrics_reporting_scheduler_unittest.cc", | 199 "metrics_reporting_scheduler_unittest.cc", |
195 "metrics_service_unittest.cc", | 200 "metrics_service_unittest.cc", |
196 "metrics_state_manager_unittest.cc", | 201 "metrics_state_manager_unittest.cc", |
197 "net/net_metrics_log_uploader_unittest.cc", | 202 "net/net_metrics_log_uploader_unittest.cc", |
198 "persisted_logs_unittest.cc", | 203 "persisted_logs_unittest.cc", |
| 204 "stability_metrics_helper_unittest.cc", |
199 ] | 205 ] |
200 | 206 |
201 deps = [ | 207 deps = [ |
202 ":metrics", | 208 ":metrics", |
203 ":net", | 209 ":net", |
204 ":test_support", | 210 ":test_support", |
205 "//base:prefs_test_support", | 211 "//base:prefs_test_support", |
206 "//base/test:test_support", | 212 "//base/test:test_support", |
207 "//components/variations", | 213 "//components/variations", |
208 "//testing/gtest", | 214 "//testing/gtest", |
(...skipping 10 matching lines...) Expand all Loading... |
219 "profiler/profiler_metrics_provider_unittest.cc", | 225 "profiler/profiler_metrics_provider_unittest.cc", |
220 "profiler/tracking_synchronizer_unittest.cc", | 226 "profiler/tracking_synchronizer_unittest.cc", |
221 ] | 227 ] |
222 } | 228 } |
223 if (is_linux) { | 229 if (is_linux) { |
224 sources += [ "serialization/serialization_utils_unittest.cc" ] | 230 sources += [ "serialization/serialization_utils_unittest.cc" ] |
225 deps += [ ":serialization" ] | 231 deps += [ ":serialization" ] |
226 } | 232 } |
227 } | 233 } |
228 # TODO(GYP): metrics_chromeos | 234 # TODO(GYP): metrics_chromeos |
OLD | NEW |