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

Unified Diff: mash/example/BUILD.gn

Issue 2573283002: Use a static catalog manifest for the standalone Mash runner (Closed)
Patch Set: . 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 | « mash/BUILD.gn ('k') | mash/runner/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mash/example/BUILD.gn
diff --git a/mash/example/BUILD.gn b/mash/example/BUILD.gn
index 26c0873e35c022f52590bc2135961ba7a0b66490..0bc305f3d7e02ac633740830d48d53acd8c44e30 100644
--- a/mash/example/BUILD.gn
+++ b/mash/example/BUILD.gn
@@ -2,6 +2,7 @@
# 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("//testing/test.gni")
group("example") {
@@ -10,11 +11,25 @@ group("example") {
deps = [
"//mash/example/views_examples",
"//mash/example/window_type_launcher",
+ "//mash/runner",
"//mash/simple_wm",
- "//services/service_manager/standalone",
]
if (is_chromeos) {
deps += [ "//ash/mus" ]
}
}
+
+catalog("catalog") {
+ standalone_services = [
+ "simple_wm",
+ "views_examples",
+ "window_type_launcher",
+ ]
+
+ deps = [
+ "//mash/example/views_examples:manifest",
+ "//mash/example/window_type_launcher:manifest",
+ "//mash/simple_wm:manifest",
+ ]
+}
« no previous file with comments | « mash/BUILD.gn ('k') | mash/runner/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698