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

Unified Diff: services/util/cpp/BUILD.gn

Issue 2024953003: Motown: Move framework/util/incident* so other services can use it (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 7 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: services/util/cpp/BUILD.gn
diff --git a/services/util/cpp/BUILD.gn b/services/util/cpp/BUILD.gn
index 6a917c379dceb264b422790f7541ba021fa47e23..a2b48a5ffa786a6f7bce31351fe622640ea3e588 100644
--- a/services/util/cpp/BUILD.gn
+++ b/services/util/cpp/BUILD.gn
@@ -10,6 +10,8 @@ source_set("cpp") {
sources = [
"factory_service_base.cc",
"factory_service_base.h",
+ "incident.cc",
+ "incident.h",
]
deps = [
@@ -19,3 +21,20 @@ source_set("cpp") {
"//mojo/public/cpp/application",
]
}
+
+mojo_native_application("apptests") {
+ output_name = "services_util_cpp_apptests"
+
+ testonly = true
+
+ sources = [
+ "test/incident_test.cc",
+ ]
+
+ deps = [
+ ":cpp",
+ "//base",
+ "//mojo/application",
+ "//mojo/application:test_support",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698