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

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: merge to tip of tree 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 ":manifest",
14 "//ash/mus:lib",
15 "//ash/resources",
16 "//base:i18n",
17 "//components/mus:lib",
18 "//components/resource_provider:lib",
19 "//content/public/common",
20 "//mash/quick_launch:lib",
21 "//mash/shell:lib",
22 "//mash/wm:lib",
23 "//mojo/common:mojo_scheme_register",
24 "//mojo/shell",
25 "//mojo/shell/background:lib",
26 "//mojo/shell/public/cpp",
27 "//mojo/shell/public/interfaces",
28 "//mojo/shell/runner/common",
29 "//mojo/shell/runner/host:child_process_base",
30 "//mojo/shell/runner/host:lib",
31 "//url",
32 ]
33
34 if (is_linux && !is_android) {
35 deps += [ "//components/font_service:lib" ]
36 }
37 }
38
39 mojo_application_manifest("manifest") {
40 type = "exe"
41 application_name = "chrome_mash"
42 source = "chrome_mash_manifest.json"
43 deps = [
44 "//ash/mus:manifest",
45 "//components/mus:manifest",
46 "//components/resource_provider:manifest",
47 "//mash/quick_launch:manifest",
48 "//mash/shell:manifest",
49 "//mash/wm:manifest",
50 ]
51 packaged_applications = [
52 "ash_sysui",
53 "desktop_wm",
54 "mash_shell",
55 "mus",
56 "quick_launch",
57 "resource_provider",
58 ]
59
60 if (is_linux && !is_android) {
61 deps += [ "//components/font_service:manifest" ]
62 packaged_applications += [ "font_service" ]
63 }
64 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_main.cc ('k') | chrome/app/mash/DEPS » ('j') | chrome/common/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698