Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Side by Side Diff: chrome/app/BUILD.gn

Issue 1930813002: mash/chrome: Update manifest for exe:chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tot.merge Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/mojo/chrome_manifest.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application_manifest.gni") 6 import("//mojo/public/mojo_application_manifest.gni")
7 import("//tools/grit/grit_rule.gni") 7 import("//tools/grit/grit_rule.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 } 367 }
368 } 368 }
369 369
370 if (use_aura) { 370 if (use_aura) {
371 mojo_application_manifest("chrome_manifest") { 371 mojo_application_manifest("chrome_manifest") {
372 type = "exe" 372 type = "exe"
373 application_name = "chrome" 373 application_name = "chrome"
374 source = "mojo/chrome_manifest.json" 374 source = "mojo/chrome_manifest.json"
375 base_manifest = "${root_out_dir}/content_browser_manifest.json" 375 base_manifest = "${root_out_dir}/content_browser_manifest.json"
376 base_deps = [ "//content/public/app:browser_manifest" ] 376 base_deps = [ "//content/public/app:browser_manifest" ]
377 deps = [
378 "//components/mus:manifest",
379 ]
380 packaged_applications = [ "mus" ]
377 } 381 }
378 382
379 mojo_application_manifest("chrome_renderer_manifest") { 383 mojo_application_manifest("chrome_renderer_manifest") {
380 type = "exe" 384 type = "exe"
381 application_name = "chrome_renderer" 385 application_name = "chrome_renderer"
382 source = "mojo/chrome_renderer_manifest.json" 386 source = "mojo/chrome_renderer_manifest.json"
383 base_manifest = "${root_out_dir}/content_renderer_manifest.json" 387 base_manifest = "${root_out_dir}/content_renderer_manifest.json"
384 base_deps = [ "//content/public/app:renderer_manifest" ] 388 base_deps = [ "//content/public/app:renderer_manifest" ]
385 } 389 }
386 390
387 group("mojo_manifests") { 391 group("mojo_manifests") {
388 data_deps = [ 392 data_deps = [
389 ":chrome_manifest", 393 ":chrome_manifest",
390 ":chrome_renderer_manifest", 394 ":chrome_renderer_manifest",
391 ] 395 ]
392 } 396 }
393 } 397 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/mojo/chrome_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698