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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 static_library("metrics") { | 7 static_library("metrics") { |
8 sources = [ | 8 sources = [ |
9 "call_stack_profile_metrics_provider.cc", | 9 "call_stack_profile_metrics_provider.cc", |
10 "call_stack_profile_metrics_provider.h", | 10 "call_stack_profile_metrics_provider.h", |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 public_deps = [ | 267 public_deps = [ |
268 "//components/metrics/public/interfaces:single_sample_metrics_mojo_bindings"
, | 268 "//components/metrics/public/interfaces:single_sample_metrics_mojo_bindings"
, |
269 ] | 269 ] |
270 } | 270 } |
271 | 271 |
272 source_set("call_stack_profile_params") { | 272 source_set("call_stack_profile_params") { |
273 sources = [ | 273 sources = [ |
274 "call_stack_profile_params.cc", | 274 "call_stack_profile_params.cc", |
275 "call_stack_profile_params.h", | 275 "call_stack_profile_params.h", |
276 ] | 276 ] |
| 277 |
| 278 deps = [ |
| 279 "//base:base", |
| 280 ] |
277 } | 281 } |
278 | 282 |
279 source_set("call_stacks") { | 283 source_set("call_stacks") { |
280 sources = [ | 284 sources = [ |
281 "call_stack_profile_collector.cc", | 285 "call_stack_profile_collector.cc", |
282 "call_stack_profile_collector.h", | 286 "call_stack_profile_collector.h", |
283 ] | 287 ] |
284 deps = [ | 288 deps = [ |
285 ":metrics", | 289 ":metrics", |
286 "//components/metrics/public/interfaces:call_stack_mojo_bindings", | 290 "//components/metrics/public/interfaces:call_stack_mojo_bindings", |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 # Convenience testing target | 411 # Convenience testing target |
408 test("metrics_unittests") { | 412 test("metrics_unittests") { |
409 sources = [ | 413 sources = [ |
410 "//components/test/run_all_unittests.cc", | 414 "//components/test/run_all_unittests.cc", |
411 ] | 415 ] |
412 deps = [ | 416 deps = [ |
413 ":unit_tests", | 417 ":unit_tests", |
414 "//components/test:test_support", | 418 "//components/test:test_support", |
415 ] | 419 ] |
416 } | 420 } |
OLD | NEW |