| 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 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 ":net", | 347 ":net", |
| 348 ":profiler", | 348 ":profiler", |
| 349 ":test_support", | 349 ":test_support", |
| 350 ":ui", | 350 ":ui", |
| 351 "//base/test:test_support", | 351 "//base/test:test_support", |
| 352 "//components/metrics/public/cpp:call_stack_unit_tests", | 352 "//components/metrics/public/cpp:call_stack_unit_tests", |
| 353 "//components/prefs:test_support", | 353 "//components/prefs:test_support", |
| 354 "//components/variations", | 354 "//components/variations", |
| 355 "//mojo/public/cpp/bindings", | 355 "//mojo/public/cpp/bindings", |
| 356 "//net:test_support", | 356 "//net:test_support", |
| 357 "//services/service_manager/public/cpp:sources", | 357 "//services/service_manager/public/cpp", |
| 358 "//testing/gtest", | 358 "//testing/gtest", |
| 359 "//third_party/zlib:compression_utils", | 359 "//third_party/zlib:compression_utils", |
| 360 "//ui/gfx/geometry", | 360 "//ui/gfx/geometry", |
| 361 ] | 361 ] |
| 362 | 362 |
| 363 if (is_linux) { | 363 if (is_linux) { |
| 364 sources += [ "serialization/serialization_utils_unittest.cc" ] | 364 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 365 deps += [ ":serialization" ] | 365 deps += [ ":serialization" ] |
| 366 } | 366 } |
| 367 | 367 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 383 # Convenience testing target | 383 # Convenience testing target |
| 384 test("metrics_unittests") { | 384 test("metrics_unittests") { |
| 385 sources = [ | 385 sources = [ |
| 386 "//components/test/run_all_unittests.cc", | 386 "//components/test/run_all_unittests.cc", |
| 387 ] | 387 ] |
| 388 deps = [ | 388 deps = [ |
| 389 ":unit_tests", | 389 ":unit_tests", |
| 390 "//components/test:test_support", | 390 "//components/test:test_support", |
| 391 ] | 391 ] |
| 392 } | 392 } |
| OLD | NEW |