| Index: chrome/app/BUILD.gn
|
| diff --git a/chrome/app/BUILD.gn b/chrome/app/BUILD.gn
|
| index 9dc9cd7030321de28f09719a03eec80a8d1307dc..0e8db88aede94dfb4dc27c4497fb285ea543644c 100644
|
| --- a/chrome/app/BUILD.gn
|
| +++ b/chrome/app/BUILD.gn
|
| @@ -3,7 +3,7 @@
|
| # found in the LICENSE file.
|
|
|
| import("//build/config/ui.gni")
|
| -import("//mojo/public/mojo_application_manifest.gni")
|
| +import("//services/shell/public/service_manifest.gni")
|
| import("//tools/grit/grit_rule.gni")
|
|
|
| if (is_android) {
|
| @@ -371,17 +371,17 @@ static_library("test_support") {
|
| }
|
|
|
| if (use_aura) {
|
| - mojo_application_manifest("chrome_manifest") {
|
| + service_manifest("chrome_manifest") {
|
| type = "exe"
|
| - application_name = "chrome"
|
| + 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") {
|
| + service_manifest("chrome_renderer_manifest") {
|
| type = "exe"
|
| - application_name = "chrome_renderer"
|
| + 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" ]
|
|
|