| Index: components/reporting/BUILD.gn
|
| diff --git a/services/service_manager/public/cpp/test/BUILD.gn b/components/reporting/BUILD.gn
|
| similarity index 54%
|
| copy from services/service_manager/public/cpp/test/BUILD.gn
|
| copy to components/reporting/BUILD.gn
|
| index e9fb8c9c5253d440ee96632e1b6dec3d82e7341a..04a374b666039670b33949daf4e1836b8e7551e6 100644
|
| --- a/services/service_manager/public/cpp/test/BUILD.gn
|
| +++ b/components/reporting/BUILD.gn
|
| @@ -4,25 +4,24 @@
|
|
|
| import("//testing/test.gni")
|
|
|
| -group("test") {
|
| +source_set("unit_tests") {
|
| testonly = true
|
| - deps = [
|
| - ":run_all_service_tests",
|
| +
|
| + public_deps = [
|
| + "//components/reporting/core/browser:unit_tests",
|
| ]
|
| }
|
|
|
| -source_set("run_all_service_tests") {
|
| +test("reporting_unittests") {
|
| testonly = true
|
|
|
| sources = [
|
| - "run_all_service_tests.cc",
|
| + "run_all_unittests.cc",
|
| ]
|
|
|
| - deps = [
|
| + public_deps = [
|
| + ":unit_tests",
|
| "//base",
|
| "//base/test:test_support",
|
| - "//mojo/edk/system",
|
| - "//services/service_manager/background:lib",
|
| - "//services/service_manager/background:main",
|
| ]
|
| }
|
|
|