OLD | NEW |
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", |
11 ] | 11 ] |
12 deps = [ | 12 deps = [ |
13 "//ash/mus:lib", | 13 "//ash/mus:lib", |
14 "//ash/resources", | 14 "//ash/resources", |
15 "//base:i18n", | 15 "//base:i18n", |
16 "//components/mus:lib", | 16 "//components/mus:lib", |
17 "//components/resource_provider:lib", | |
18 "//content/public/common", | 17 "//content/public/common", |
19 "//mash/browser_driver:lib", | 18 "//mash/browser_driver:lib", |
20 "//mash/quick_launch:lib", | 19 "//mash/quick_launch:lib", |
21 "//mash/session:lib", | 20 "//mash/session:lib", |
22 "//mash/task_viewer:lib", | 21 "//mash/task_viewer:lib", |
23 "//mash/wm:lib", | 22 "//mash/wm:lib", |
24 "//services/shell", | 23 "//services/shell", |
25 "//services/shell/background:lib", | 24 "//services/shell/background:lib", |
26 "//services/shell/public/cpp", | 25 "//services/shell/public/cpp", |
27 "//services/shell/public/interfaces", | 26 "//services/shell/public/interfaces", |
(...skipping 11 matching lines...) Expand all Loading... |
39 } | 38 } |
40 } | 39 } |
41 | 40 |
42 mojo_application_manifest("manifest") { | 41 mojo_application_manifest("manifest") { |
43 type = "exe" | 42 type = "exe" |
44 application_name = "chrome_mash" | 43 application_name = "chrome_mash" |
45 source = "chrome_mash_manifest.json" | 44 source = "chrome_mash_manifest.json" |
46 deps = [ | 45 deps = [ |
47 "//ash/mus:manifest", | 46 "//ash/mus:manifest", |
48 "//components/mus:manifest", | 47 "//components/mus:manifest", |
49 "//components/resource_provider:manifest", | |
50 "//mash/browser_driver:manifest", | 48 "//mash/browser_driver:manifest", |
51 "//mash/quick_launch:manifest", | 49 "//mash/quick_launch:manifest", |
52 "//mash/session:manifest", | 50 "//mash/session:manifest", |
53 "//mash/task_viewer:manifest", | 51 "//mash/task_viewer:manifest", |
54 "//mash/wm:manifest", | 52 "//mash/wm:manifest", |
55 ] | 53 ] |
56 packaged_applications = [ | 54 packaged_applications = [ |
57 "ash_sysui", | 55 "ash_sysui", |
58 "browser_driver", | 56 "browser_driver", |
59 "desktop_wm", | 57 "desktop_wm", |
60 "mash_session", | 58 "mash_session", |
61 "mus", | 59 "mus", |
62 "quick_launch", | 60 "quick_launch", |
63 "resource_provider", | |
64 "task_viewer", | 61 "task_viewer", |
65 ] | 62 ] |
66 | 63 |
67 if (is_linux && !is_android) { | 64 if (is_linux && !is_android) { |
68 deps += [ "//components/font_service:manifest" ] | 65 deps += [ "//components/font_service:manifest" ] |
69 packaged_applications += [ "font_service" ] | 66 packaged_applications += [ "font_service" ] |
70 } | 67 } |
71 } | 68 } |
OLD | NEW |