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 declare_args() { | 5 declare_args() { |
6 # Overrides os name in uma metrics log to "Blimp". | 6 # Overrides os name in uma metrics log to "Blimp". |
7 metrics_use_blimp = false | 7 metrics_use_blimp = false |
8 } | 8 } |
9 | 9 |
10 # GYP version: components/metrics.gypi:metrics | 10 # GYP version: components/metrics.gypi:metrics |
(...skipping 30 matching lines...) Expand all Loading... |
41 "metrics_log.cc", | 41 "metrics_log.cc", |
42 "metrics_log.h", | 42 "metrics_log.h", |
43 "metrics_log_manager.cc", | 43 "metrics_log_manager.cc", |
44 "metrics_log_manager.h", | 44 "metrics_log_manager.h", |
45 "metrics_log_uploader.cc", | 45 "metrics_log_uploader.cc", |
46 "metrics_log_uploader.h", | 46 "metrics_log_uploader.h", |
47 "metrics_pref_names.cc", | 47 "metrics_pref_names.cc", |
48 "metrics_pref_names.h", | 48 "metrics_pref_names.h", |
49 "metrics_provider.cc", | 49 "metrics_provider.cc", |
50 "metrics_provider.h", | 50 "metrics_provider.h", |
| 51 "metrics_reporting_default_state.cc", |
| 52 "metrics_reporting_default_state.h", |
51 "metrics_reporting_scheduler.cc", | 53 "metrics_reporting_scheduler.cc", |
52 "metrics_reporting_scheduler.h", | 54 "metrics_reporting_scheduler.h", |
53 "metrics_service.cc", | 55 "metrics_service.cc", |
54 "metrics_service.h", | 56 "metrics_service.h", |
55 "metrics_service_accessor.cc", | 57 "metrics_service_accessor.cc", |
56 "metrics_service_accessor.h", | 58 "metrics_service_accessor.h", |
57 "metrics_service_client.cc", | 59 "metrics_service_client.cc", |
58 "metrics_service_client.h", | 60 "metrics_service_client.h", |
59 "metrics_state_manager.cc", | 61 "metrics_state_manager.cc", |
60 "metrics_state_manager.h", | 62 "metrics_state_manager.h", |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 if (is_chromeos) { | 368 if (is_chromeos) { |
367 deps += [ ":leak_detector_unit_tests" ] | 369 deps += [ ":leak_detector_unit_tests" ] |
368 } | 370 } |
369 | 371 |
370 # These are only used by the blimp team, which has entirely migrated to gn, | 372 # These are only used by the blimp team, which has entirely migrated to gn, |
371 # so this logic is not replicated in the gyp file. | 373 # so this logic is not replicated in the gyp file. |
372 if (metrics_use_blimp) { | 374 if (metrics_use_blimp) { |
373 defines = [ "OVERRIDE_OS_NAME_TO_BLIMP" ] | 375 defines = [ "OVERRIDE_OS_NAME_TO_BLIMP" ] |
374 } | 376 } |
375 } | 377 } |
OLD | NEW |