Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: components/reporting/BUILD.gn

Issue 2249213002: [OBSOLETE] Reporting: Initial implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix ProfileImplIOData Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
]
}

Powered by Google App Engine
This is Rietveld 408576698