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

Unified Diff: services/service_manager/runner/host/BUILD.gn

Issue 2576233002: Consolidating the mojo NativeRunner functionality. (Closed)
Patch Set: Merged mojo_runner_host_unittests in service_manager_unittests Created 4 years 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
« no previous file with comments | « services/service_manager/runner/BUILD.gn ('k') | services/service_manager/runner/host/child_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/service_manager/runner/host/BUILD.gn
diff --git a/services/service_manager/runner/host/BUILD.gn b/services/service_manager/runner/host/BUILD.gn
index f798dca8149c7145138551c203aa9122d16c93ee..3c26d35f901c2c4bb44392b4f3d300a9ee59ac1a 100644
--- a/services/service_manager/runner/host/BUILD.gn
+++ b/services/service_manager/runner/host/BUILD.gn
@@ -7,21 +7,10 @@ import("//services/service_manager/public/service_manifest.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//testing/test.gni")
-group("host") {
- testonly = true
-
- deps = [
- ":lib",
- ":mojo_runner_host_unittests",
- ]
-}
-
source_set("lib") {
sources = [
- "child_process_host.cc",
- "child_process_host.h",
- "out_of_process_native_runner.cc",
- "out_of_process_native_runner.h",
+ "service_process_launcher.cc",
+ "service_process_launcher.h",
]
deps = [
@@ -37,8 +26,6 @@ source_set("lib") {
"//base",
"//mojo/edk/system",
"//mojo/public/cpp/system",
- "//services/service_manager",
- "//services/service_manager/public/interfaces",
]
if (is_linux && !is_android) {
@@ -46,10 +33,10 @@ source_set("lib") {
}
}
-test("mojo_runner_host_unittests") {
+source_set("unittests") {
+ testonly = true
sources = [
- "child_process_host_unittest.cc",
- "host_unittests.cc",
+ "service_process_launcher_unittest.cc",
]
deps = [
« no previous file with comments | « services/service_manager/runner/BUILD.gn ('k') | services/service_manager/runner/host/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698