| Index: mash/example/window_type_launcher/BUILD.gn
|
| diff --git a/mash/example/window_type_launcher/BUILD.gn b/mash/example/window_type_launcher/BUILD.gn
|
| index 9a4c4d3b00f5e31808b15b5a154359fd69a79267..4f8910919295a2c1dc8fd2497d47371b6435bb51 100644
|
| --- a/mash/example/window_type_launcher/BUILD.gn
|
| +++ b/mash/example/window_type_launcher/BUILD.gn
|
| @@ -4,6 +4,7 @@
|
|
|
| import("//build/config/ui.gni")
|
| import("//mojo/public/mojo_application.gni")
|
| +import("//mojo/public/mojo_application_manifest.gni")
|
| import("//mojo/public/tools/bindings/mojom.gni")
|
| import("//tools/grit/repack.gni")
|
|
|
| @@ -18,6 +19,7 @@ executable("window_type_launcher") {
|
| ]
|
|
|
| deps = [
|
| + ":manifest",
|
| ":window_type_launcher_resources",
|
| "//base",
|
| "//base:base_static",
|
| @@ -57,3 +59,9 @@ copy("window_type_launcher_resources") {
|
| "//ui/views/mus:resources",
|
| ]
|
| }
|
| +
|
| +mojo_application_manifest("manifest") {
|
| + type = "exe"
|
| + application_name = "window_type_launcher_exe"
|
| + source = "manifest.json"
|
| +}
|
|
|