| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 ] | 252 ] |
| 253 } | 253 } |
| 254 | 254 |
| 255 source_set("child_call_stacks") { | 255 source_set("child_call_stacks") { |
| 256 sources = [ | 256 sources = [ |
| 257 "child_call_stack_profile_collector.cc", | 257 "child_call_stack_profile_collector.cc", |
| 258 "child_call_stack_profile_collector.h", | 258 "child_call_stack_profile_collector.h", |
| 259 ] | 259 ] |
| 260 deps = [ | 260 deps = [ |
| 261 "//components/metrics/public/interfaces:call_stack_mojo_bindings", | 261 "//components/metrics/public/interfaces:call_stack_mojo_bindings", |
| 262 "//services/shell/public/cpp", | 262 "//services/service_manager/public/cpp", |
| 263 ] | 263 ] |
| 264 } | 264 } |
| 265 | 265 |
| 266 static_library("test_support") { | 266 static_library("test_support") { |
| 267 testonly = true | 267 testonly = true |
| 268 sources = [ | 268 sources = [ |
| 269 "test_enabled_state_provider.cc", | 269 "test_enabled_state_provider.cc", |
| 270 "test_enabled_state_provider.h", | 270 "test_enabled_state_provider.h", |
| 271 "test_metrics_provider.cc", | 271 "test_metrics_provider.cc", |
| 272 "test_metrics_provider.h", | 272 "test_metrics_provider.h", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 ":net", | 328 ":net", |
| 329 ":profiler", | 329 ":profiler", |
| 330 ":test_support", | 330 ":test_support", |
| 331 ":ui", | 331 ":ui", |
| 332 "//base/test:test_support", | 332 "//base/test:test_support", |
| 333 "//components/metrics/public/cpp:call_stack_unit_tests", | 333 "//components/metrics/public/cpp:call_stack_unit_tests", |
| 334 "//components/prefs:test_support", | 334 "//components/prefs:test_support", |
| 335 "//components/variations", | 335 "//components/variations", |
| 336 "//mojo/public/cpp/bindings", | 336 "//mojo/public/cpp/bindings", |
| 337 "//net:test_support", | 337 "//net:test_support", |
| 338 "//services/shell/public/cpp:sources", | 338 "//services/service_manager/public/cpp:sources", |
| 339 "//testing/gtest", | 339 "//testing/gtest", |
| 340 "//third_party/zlib:compression_utils", | 340 "//third_party/zlib:compression_utils", |
| 341 "//ui/gfx/geometry", | 341 "//ui/gfx/geometry", |
| 342 ] | 342 ] |
| 343 | 343 |
| 344 if (is_linux) { | 344 if (is_linux) { |
| 345 sources += [ "serialization/serialization_utils_unittest.cc" ] | 345 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 346 deps += [ ":serialization" ] | 346 deps += [ ":serialization" ] |
| 347 } | 347 } |
| 348 | 348 |
| 349 if (is_chromeos) { | 349 if (is_chromeos) { |
| 350 deps += [ "leak_detector:unit_tests" ] | 350 deps += [ "leak_detector:unit_tests" ] |
| 351 } | 351 } |
| 352 | 352 |
| 353 # iOS is not supported by the profiler and the ios-simulator bot chokes on | 353 # iOS is not supported by the profiler and the ios-simulator bot chokes on |
| 354 # these tests. | 354 # these tests. |
| 355 if (is_ios) { | 355 if (is_ios) { |
| 356 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] | 356 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] |
| 357 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] | 357 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] |
| 358 } | 358 } |
| 359 } | 359 } |
| OLD | NEW |