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

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: cleanup 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:static_switches",
20 "//mash/quick_launch:lib",
21 "//mash/shell:lib",
22 "//mash/wm:lib",
23 "//mojo/common:mojo_scheme_register",
24 "//mojo/shell/background:lib",
25 "//mojo/shell/public/cpp",
26 "//mojo/shell/public/interfaces",
27 "//mojo/shell/runner/common",
28 "//mojo/shell/runner/host:child_process_base",
29 "//mojo/shell/runner/host:lib",
30 "//url",
31 ]
32
33 if (is_linux && !is_android) {
34 deps += [ "//components/font_service:lib" ]
35 }
36 }
37
38 mojo_application_manifest("manifest") {
39 type = "exe"
40 application_name = "chrome"
41 source = "chrome_mash_manifest.json"
42 deps = [
43 "//ash/mus:manifest",
44 "//components/mus:manifest",
45 "//components/resource_provider:manifest",
46 "//mash/quick_launch:manifest",
47 "//mash/shell:manifest",
48 "//mash/wm:manifest",
49 ]
50 packaged_applications = [
51 "ash_sysui",
52 "desktop_wm",
53 "mash_shell",
54 "mus",
55 "quick_launch",
56 "resource_provider",
57 ]
58
59 if (is_linux && !is_android) {
60 deps += [ "//components/font_service:manifest" ]
61 packaged_applications += [ "font_service" ]
62 }
63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698