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

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

Issue 1787083003: Use chrome manifest with embedded shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shell-no-wait
Patch Set: rebase Created 4 years, 9 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/mash/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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//mojo/public/mojo_application_manifest.gni") 5 import("//mojo/public/mojo_application_manifest.gni")
6 6
7 source_set("mash") { 7 source_set("mash") {
8 sources = [ 8 sources = [
9 "mash_runner.cc", 9 "mash_runner.cc",
10 "mash_runner.h", 10 "mash_runner.h",
(...skipping 11 matching lines...) Expand all
22 "//mojo/shell", 22 "//mojo/shell",
23 "//mojo/shell/background:lib", 23 "//mojo/shell/background:lib",
24 "//mojo/shell/public/cpp", 24 "//mojo/shell/public/cpp",
25 "//mojo/shell/public/interfaces", 25 "//mojo/shell/public/interfaces",
26 "//mojo/shell/runner/common", 26 "//mojo/shell/runner/common",
27 "//mojo/shell/runner/host:child_process_base", 27 "//mojo/shell/runner/host:child_process_base",
28 "//mojo/shell/runner/host:lib", 28 "//mojo/shell/runner/host:lib",
29 "//url", 29 "//url",
30 ] 30 ]
31 data_deps = [ 31 data_deps = [
32 ":chrome_manifest",
33 ":manifest", 32 ":manifest",
34 ] 33 ]
35 34
36 if (is_linux && !is_android) { 35 if (is_linux && !is_android) {
37 deps += [ "//components/font_service:lib" ] 36 deps += [ "//components/font_service:lib" ]
38 } 37 }
39 } 38 }
40 39
41 mojo_application_manifest("manifest") { 40 mojo_application_manifest("manifest") {
42 type = "exe" 41 type = "exe"
(...skipping 14 matching lines...) Expand all
57 "mus", 56 "mus",
58 "quick_launch", 57 "quick_launch",
59 "resource_provider", 58 "resource_provider",
60 ] 59 ]
61 60
62 if (is_linux && !is_android) { 61 if (is_linux && !is_android) {
63 deps += [ "//components/font_service:manifest" ] 62 deps += [ "//components/font_service:manifest" ]
64 packaged_applications += [ "font_service" ] 63 packaged_applications += [ "font_service" ]
65 } 64 }
66 } 65 }
67
68 mojo_application_manifest("chrome_manifest") {
69 type = "exe"
70 application_name = "chrome"
71 source = "chrome_manifest.json"
72 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/mash/chrome_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698