| Index: chrome/app/BUILD.gn
|
| diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
|
| index 9ffef9931d0001665fb0a0a22020aacda87f4172..1a88d73199f6c1b5eeb34929308774eec773fa8c 100644
|
| --- a/chrome/app/BUILD.gn
|
| +++ b/chrome/app/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("//mojo/public/mojo_application_manifest.gni")
|
| import("//tools/grit/grit_rule.gni")
|
|
|
| if (is_android) {
|
| @@ -363,3 +364,26 @@ source_set("test_support") {
|
| ]
|
| }
|
| }
|
| +
|
| +mojo_application_manifest("chrome_manifest") {
|
| + type = "exe"
|
| + application_name = "chrome"
|
| + source = "mojo/chrome_manifest.json"
|
| + base_manifest = "${root_out_dir}/content_browser_manifest.json"
|
| + base_deps = [ "//content/public/app:browser_manifest" ]
|
| +}
|
| +
|
| +mojo_application_manifest("chrome_renderer_manifest") {
|
| + type = "exe"
|
| + application_name = "chrome_renderer"
|
| + source = "mojo/chrome_renderer_manifest.json"
|
| + base_manifest = "${root_out_dir}/content_renderer_manifest.json"
|
| + base_deps = [ "//content/public/app:renderer_manifest" ]
|
| +}
|
| +
|
| +group("mojo_manifests") {
|
| + deps = [
|
| + ":chrome_manifest",
|
| + ":chrome_renderer_manifest",
|
| + ]
|
| +}
|
|
|