| 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 # These are only used by the blimp team, which has entirely migrated to gn, | 10 # These are only used by the blimp team, which has entirely migrated to gn, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "metrics_service_accessor.cc", | 62 "metrics_service_accessor.cc", |
| 63 "metrics_service_accessor.h", | 63 "metrics_service_accessor.h", |
| 64 "metrics_service_client.cc", | 64 "metrics_service_client.cc", |
| 65 "metrics_service_client.h", | 65 "metrics_service_client.h", |
| 66 "metrics_state_manager.cc", | 66 "metrics_state_manager.cc", |
| 67 "metrics_state_manager.h", | 67 "metrics_state_manager.h", |
| 68 "metrics_switches.cc", | 68 "metrics_switches.cc", |
| 69 "metrics_switches.h", | 69 "metrics_switches.h", |
| 70 "persisted_logs.cc", | 70 "persisted_logs.cc", |
| 71 "persisted_logs.h", | 71 "persisted_logs.h", |
| 72 "persisted_logs_metrics.h", |
| 73 "persisted_logs_metrics_impl.cc", |
| 74 "persisted_logs_metrics_impl.h", |
| 72 "stability_metrics_helper.cc", | 75 "stability_metrics_helper.cc", |
| 73 "stability_metrics_helper.h", | 76 "stability_metrics_helper.h", |
| 74 "system_memory_stats_recorder.h", | 77 "system_memory_stats_recorder.h", |
| 75 "system_memory_stats_recorder_linux.cc", | 78 "system_memory_stats_recorder_linux.cc", |
| 76 "system_memory_stats_recorder_win.cc", | 79 "system_memory_stats_recorder_win.cc", |
| 77 "url_constants.cc", | 80 "url_constants.cc", |
| 78 "url_constants.h", | 81 "url_constants.h", |
| 79 ] | 82 ] |
| 80 | 83 |
| 81 public_deps = [ | 84 public_deps = [ |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 deps += [ "leak_detector:unit_tests" ] | 353 deps += [ "leak_detector:unit_tests" ] |
| 351 } | 354 } |
| 352 | 355 |
| 353 # iOS is not supported by the profiler and the ios-simulator bot chokes on | 356 # iOS is not supported by the profiler and the ios-simulator bot chokes on |
| 354 # these tests. | 357 # these tests. |
| 355 if (is_ios) { | 358 if (is_ios) { |
| 356 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] | 359 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] |
| 357 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] | 360 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] |
| 358 } | 361 } |
| 359 } | 362 } |
| OLD | NEW |