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 "//ash/sysui:lib", | 15 "//ash/sysui:lib", |
16 "//base:i18n", | 16 "//base:i18n", |
17 "//content/public/common", | 17 "//content/public/common", |
18 "//mash/app_driver:lib", | 18 "//mash/app_driver:lib", |
19 "//mash/quick_launch:lib", | 19 "//mash/quick_launch:lib", |
20 "//mash/session:lib", | 20 "//mash/session:lib", |
21 "//mash/task_viewer:lib", | 21 "//mash/task_viewer:lib", |
| 22 "//mash/touch_hud:lib", |
22 "//services/shell", | 23 "//services/shell", |
23 "//services/shell/background:lib", | 24 "//services/shell/background:lib", |
24 "//services/shell/public/cpp", | 25 "//services/shell/public/cpp", |
25 "//services/shell/public/interfaces", | 26 "//services/shell/public/interfaces", |
26 "//services/shell/runner/common", | 27 "//services/shell/runner/common", |
27 "//services/shell/runner/host:child_process_base", | 28 "//services/shell/runner/host:child_process_base", |
28 "//services/shell/runner/host:lib", | 29 "//services/shell/runner/host:lib", |
29 "//services/ui:lib", | 30 "//services/ui:lib", |
30 "//url", | 31 "//url", |
31 ] | 32 ] |
(...skipping 10 matching lines...) Expand all Loading... |
42 type = "exe" | 43 type = "exe" |
43 application_name = "chrome_mash" | 44 application_name = "chrome_mash" |
44 source = "chrome_mash_manifest.json" | 45 source = "chrome_mash_manifest.json" |
45 deps = [ | 46 deps = [ |
46 "//ash/mus:manifest", | 47 "//ash/mus:manifest", |
47 "//ash/sysui:manifest", | 48 "//ash/sysui:manifest", |
48 "//mash/app_driver:manifest", | 49 "//mash/app_driver:manifest", |
49 "//mash/quick_launch:manifest", | 50 "//mash/quick_launch:manifest", |
50 "//mash/session:manifest", | 51 "//mash/session:manifest", |
51 "//mash/task_viewer:manifest", | 52 "//mash/task_viewer:manifest", |
| 53 "//mash/touch_hud:manifest", |
52 "//services/ui:manifest", | 54 "//services/ui:manifest", |
53 ] | 55 ] |
54 packaged_applications = [ | 56 packaged_applications = [ |
55 "app_driver", | 57 "app_driver", |
56 "ash", | 58 "ash", |
57 "ash_sysui", | 59 "ash_sysui", |
58 "mash_session", | 60 "mash_session", |
59 "quick_launch", | 61 "quick_launch", |
60 "task_viewer", | 62 "task_viewer", |
| 63 "touch_hud", |
61 "ui", | 64 "ui", |
62 ] | 65 ] |
63 | 66 |
64 if (is_linux && !is_android) { | 67 if (is_linux && !is_android) { |
65 deps += [ "//components/font_service:manifest" ] | 68 deps += [ "//components/font_service:manifest" ] |
66 packaged_applications += [ "font_service" ] | 69 packaged_applications += [ "font_service" ] |
67 } | 70 } |
68 } | 71 } |
OLD | NEW |