| 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",
|
| + ]
|
| +}
|
|
|