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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 "drive_metrics_provider_unittest.cc", | 318 "drive_metrics_provider_unittest.cc", |
319 "file_metrics_provider_unittest.cc", | 319 "file_metrics_provider_unittest.cc", |
320 "histogram_encoder_unittest.cc", | 320 "histogram_encoder_unittest.cc", |
321 "machine_id_provider_win_unittest.cc", | 321 "machine_id_provider_win_unittest.cc", |
322 "metrics_log_manager_unittest.cc", | 322 "metrics_log_manager_unittest.cc", |
323 "metrics_log_unittest.cc", | 323 "metrics_log_unittest.cc", |
324 "metrics_reporting_scheduler_unittest.cc", | 324 "metrics_reporting_scheduler_unittest.cc", |
325 "metrics_service_unittest.cc", | 325 "metrics_service_unittest.cc", |
326 "metrics_state_manager_unittest.cc", | 326 "metrics_state_manager_unittest.cc", |
327 "net/net_metrics_log_uploader_unittest.cc", | 327 "net/net_metrics_log_uploader_unittest.cc", |
| 328 "net/network_metrics_provider_unittest.cc", |
328 "persisted_logs_unittest.cc", | 329 "persisted_logs_unittest.cc", |
329 "profiler/profiler_metrics_provider_unittest.cc", | 330 "profiler/profiler_metrics_provider_unittest.cc", |
330 "profiler/tracking_synchronizer_unittest.cc", | 331 "profiler/tracking_synchronizer_unittest.cc", |
331 "stability_metrics_helper_unittest.cc", | 332 "stability_metrics_helper_unittest.cc", |
332 "ui/screen_info_metrics_provider_unittest.cc", | 333 "ui/screen_info_metrics_provider_unittest.cc", |
333 ] | 334 ] |
334 | 335 |
335 deps = [ | 336 deps = [ |
336 ":call_stack_profile_params", | 337 ":call_stack_profile_params", |
337 ":child_call_stacks", | 338 ":child_call_stacks", |
(...skipping 13 matching lines...) Expand all Loading... |
351 "//third_party/zlib:compression_utils", | 352 "//third_party/zlib:compression_utils", |
352 "//ui/gfx/geometry", | 353 "//ui/gfx/geometry", |
353 ] | 354 ] |
354 | 355 |
355 if (is_linux) { | 356 if (is_linux) { |
356 sources += [ "serialization/serialization_utils_unittest.cc" ] | 357 sources += [ "serialization/serialization_utils_unittest.cc" ] |
357 deps += [ ":serialization" ] | 358 deps += [ ":serialization" ] |
358 } | 359 } |
359 | 360 |
360 if (is_chromeos) { | 361 if (is_chromeos) { |
361 deps += [ "leak_detector:unit_tests" ] | 362 deps += [ |
| 363 "leak_detector:unit_tests", |
| 364 "//chromeos", |
| 365 ] |
362 } | 366 } |
363 | 367 |
364 # iOS is not supported by the profiler and the ios-simulator bot chokes on | 368 # iOS is not supported by the profiler and the ios-simulator bot chokes on |
365 # these tests. | 369 # these tests. |
366 if (is_ios) { | 370 if (is_ios) { |
367 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] | 371 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] |
368 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] | 372 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] |
369 } | 373 } |
370 } | 374 } |
OLD | NEW |