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

Unified Diff: chrome/app/mash/BUILD.gn

Issue 2651953002: Revert of [Service Manager] Get rid of dynamic service discovery (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/app/mash/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/mash/BUILD.gn
diff --git a/chrome/app/mash/BUILD.gn b/chrome/app/mash/BUILD.gn
index 76dc0c4ac4b1cb633335112a7eb2cfbf4fe161c4..48b2ad736119a817925ebcab2dcbd437994ba2e6 100644
--- a/chrome/app/mash/BUILD.gn
+++ b/chrome/app/mash/BUILD.gn
@@ -2,7 +2,6 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//services/catalog/public/tools/catalog.gni")
import("//services/service_manager/public/service_manifest.gni")
source_set("mash") {
@@ -29,7 +28,7 @@
"//url",
]
data_deps = [
- ":catalog_copy",
+ ":mash_manifest",
"//chrome/app:service_manifests",
]
@@ -55,7 +54,7 @@
service_manifest("mash_manifest") {
name = "chrome_mash"
source = "chrome_mash_manifest.json"
- packaged_services = [
+ deps = [
"//ash/autoclick/mus:manifest",
"//ash/touch_hud/mus:manifest",
"//mash/catalog_viewer:manifest",
@@ -65,27 +64,24 @@
"//services/ui:manifest",
"//services/ui/ime/test_ime_driver:manifest",
]
+ packaged_services = [
+ "accessibility_autoclick",
+ "catalog_viewer",
+ "mash_session",
+ "quick_launch",
+ "task_viewer",
+ "test_ime_driver",
+ "touch_hud",
+ "ui",
+ ]
if (is_chromeos) {
- packaged_services += [ "//ash/mus:manifest" ]
+ deps += [ "//ash/mus:manifest" ]
+ packaged_services += [ "ash" ]
}
if (is_linux && !is_android) {
- packaged_services += [ "//components/font_service:manifest" ]
+ deps += [ "//components/font_service:manifest" ]
+ packaged_services += [ "font_service" ]
}
}
-
-catalog("catalog") {
- embedded_services = [ ":mash_manifest" ]
- catalog_deps = [ "//chrome/app:catalog" ]
-}
-
-copy("catalog_copy") {
- sources = get_target_outputs(":catalog")
- outputs = [
- "${root_out_dir}/chrome_mash_catalog.json",
- ]
- deps = [
- ":catalog",
- ]
-}
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/app/mash/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698