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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 "//services/service_manager/public/interfaces", | 264 "//services/service_manager/public/interfaces", |
265 ] | 265 ] |
266 | 266 |
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", | |
275 "call_stack_profile_params.h", | 274 "call_stack_profile_params.h", |
276 ] | 275 ] |
| 276 |
| 277 deps = [ |
| 278 "//base:base", |
| 279 ] |
277 } | 280 } |
278 | 281 |
279 source_set("call_stacks") { | 282 source_set("call_stacks") { |
280 sources = [ | 283 sources = [ |
281 "call_stack_profile_collector.cc", | 284 "call_stack_profile_collector.cc", |
282 "call_stack_profile_collector.h", | 285 "call_stack_profile_collector.h", |
283 ] | 286 ] |
284 deps = [ | 287 deps = [ |
285 ":metrics", | 288 ":metrics", |
286 "//components/metrics/public/interfaces:call_stack_mojo_bindings", | 289 "//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 | 410 # Convenience testing target |
408 test("metrics_unittests") { | 411 test("metrics_unittests") { |
409 sources = [ | 412 sources = [ |
410 "//components/test/run_all_unittests.cc", | 413 "//components/test/run_all_unittests.cc", |
411 ] | 414 ] |
412 deps = [ | 415 deps = [ |
413 ":unit_tests", | 416 ":unit_tests", |
414 "//components/test:test_support", | 417 "//components/test:test_support", |
415 ] | 418 ] |
416 } | 419 } |
OLD | NEW |