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

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

Issue 1722743002: Adds ability for chrome to behave as mojo_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome_mash, package_mash_services and NativeRunnerDelegate Created 4 years, 10 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//mojo/public/mojo_application_manifest.gni")
6
7 source_set("mash") {
8 sources = [
9 "mash_runner.cc",
10 "mash_runner.h",
11 ]
12 deps = [
13 # ":copy_chrome_mash_manifest",
14 ":manifest",
15 "//ash/mus:lib",
16 "//ash/resources",
17 "//base:i18n",
18 "//components/mus:lib",
19 "//components/resource_provider:lib",
20 "//content/public/common:static_switches",
21 "//mash/quick_launch:lib",
22 "//mash/shell:lib",
23 "//mash/wm:lib",
24 "//mojo/common:mojo_scheme_register",
25 "//mojo/shell",
26 "//mojo/shell/background:lib",
27 "//mojo/shell/public/cpp",
28 "//mojo/shell/public/interfaces",
29 "//mojo/shell/runner/common",
30 "//mojo/shell/runner/host:child_process_base",
31 "//mojo/shell/runner/host:lib",
32 "//url",
33 ]
34
35 if (is_linux && !is_android) {
36 deps += [ "//components/font_service:lib" ]
37 }
38 }
39
40 mojo_application_manifest("manifest") {
41 type = "exe"
42 application_name = "chrome_mash"
43 source = "chrome_mash_manifest.json"
44 deps = [
45 "//ash/mus:manifest",
46 "//components/mus:manifest",
47 "//components/resource_provider:manifest",
48 "//mash/quick_launch:manifest",
49 "//mash/shell:manifest",
50 "//mash/wm:manifest",
51 ]
52 packaged_applications = [
53 "ash_sysui",
54 "desktop_wm",
55 "mash_shell",
56 "mus",
57 "quick_launch",
58 "resource_provider",
59 ]
60
61 if (is_linux && !is_android) {
62 deps += [ "//components/font_service:manifest" ]
63 packaged_applications += [ "font_service" ]
64 }
65 }
66 # To allow apps to connect to exe:chrome we name the bundled chrome+mash
67 # as chrome_mash_manifest.
68 #copy("copy_chrome_mash_manifest") {
69 # sources = [ "$root_out_dir/chrome_manifest.json" ]
70 # outputs = [ "$root_out_dir/chrome_mash_manifest.json" ]
71 # deps = [ ":manifest" ]
72 #}
OLDNEW
« chrome/app/chrome_main.cc ('K') | « chrome/app/chrome_main.cc ('k') | chrome/app/mash/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698