| Index: chrome/app/mash/BUILD.gn
|
| diff --git a/chrome/app/mash/BUILD.gn b/chrome/app/mash/BUILD.gn
|
| index 6611b7d23db00fc891f4fbb2c603ee2d9eb0fc5c..d64aac38deb0552cadf666150db3e982011ebcf6 100644
|
| --- a/chrome/app/mash/BUILD.gn
|
| +++ b/chrome/app/mash/BUILD.gn
|
| @@ -15,6 +15,7 @@ source_set("mash") {
|
| "//components/tracing:startup_tracing",
|
| "//content/public/common",
|
| "//mash/package",
|
| + "//services/catalog/public/interfaces",
|
| "//services/shell",
|
| "//services/shell/background:lib",
|
| "//services/shell/public/cpp",
|
| @@ -25,7 +26,9 @@ source_set("mash") {
|
| "//url",
|
| ]
|
| data_deps = [
|
| - ":manifest",
|
| + ":browser_manifest",
|
| + ":mash_manifest",
|
| + "//chrome/app:service_manifests",
|
| ]
|
|
|
| if (is_linux && !is_android) {
|
| @@ -33,7 +36,7 @@ source_set("mash") {
|
| }
|
| }
|
|
|
| -service_manifest("manifest") {
|
| +service_manifest("mash_manifest") {
|
| type = "exe"
|
| name = "chrome_mash"
|
| source = "chrome_mash_manifest.json"
|
| @@ -65,3 +68,13 @@ service_manifest("manifest") {
|
| packaged_services += [ "font_service" ]
|
| }
|
| }
|
| +
|
| +service_manifest("browser_manifest") {
|
| + name = "content_browser"
|
| + source = "${root_out_dir}/Packages/chrome_content_browser/manifest.json"
|
| + output_name = "chrome_mash_content_browser"
|
| + deps = [
|
| + "//chrome/app:chrome_content_browser_manifest",
|
| + ]
|
| + overlays = [ "chrome_mash_content_browser_manifest_overlay.json" ]
|
| +}
|
|
|