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("//services/shell/public/service_manifest.gni") | 5 import("//services/shell/public/service_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/resources", | 13 "//ash/resources", |
14 "//base:i18n", | 14 "//base:i18n", |
15 "//components/tracing:startup_tracing", | 15 "//components/tracing:startup_tracing", |
16 "//content/public/common", | 16 "//content/public/common", |
17 "//mash/package", | 17 "//mash/package", |
| 18 "//services/catalog/public/interfaces", |
18 "//services/shell", | 19 "//services/shell", |
19 "//services/shell/background:lib", | 20 "//services/shell/background:lib", |
20 "//services/shell/public/cpp", | 21 "//services/shell/public/cpp", |
21 "//services/shell/public/interfaces", | 22 "//services/shell/public/interfaces", |
22 "//services/shell/runner/common", | 23 "//services/shell/runner/common", |
23 "//services/shell/runner/host:child_process_base", | 24 "//services/shell/runner/host:child_process_base", |
24 "//services/shell/runner/host:lib", | 25 "//services/shell/runner/host:lib", |
25 "//url", | 26 "//url", |
26 ] | 27 ] |
27 data_deps = [ | 28 data_deps = [ |
28 ":manifest", | 29 ":browser_manifest", |
| 30 ":mash_manifest", |
| 31 "//chrome/app:service_manifests", |
29 ] | 32 ] |
30 | 33 |
31 if (is_linux && !is_android) { | 34 if (is_linux && !is_android) { |
32 deps += [ "//components/font_service:lib" ] | 35 deps += [ "//components/font_service:lib" ] |
33 } | 36 } |
34 } | 37 } |
35 | 38 |
36 service_manifest("manifest") { | 39 service_manifest("mash_manifest") { |
37 type = "exe" | |
38 name = "chrome_mash" | 40 name = "chrome_mash" |
39 source = "chrome_mash_manifest.json" | 41 source = "chrome_mash_manifest.json" |
40 deps = [ | 42 deps = [ |
41 "//ash/autoclick/mus:manifest", | 43 "//ash/autoclick/mus:manifest", |
42 "//ash/mus:manifest", | 44 "//ash/mus:manifest", |
43 "//ash/touch_hud/mus:manifest", | 45 "//ash/touch_hud/mus:manifest", |
44 "//mash/app_driver:manifest", | 46 "//mash/app_driver:manifest", |
45 "//mash/quick_launch:manifest", | 47 "//mash/quick_launch:manifest", |
46 "//mash/session:manifest", | 48 "//mash/session:manifest", |
47 "//mash/task_viewer:manifest", | 49 "//mash/task_viewer:manifest", |
(...skipping 10 matching lines...) Expand all Loading... |
58 "test_ime_driver", | 60 "test_ime_driver", |
59 "touch_hud", | 61 "touch_hud", |
60 "ui", | 62 "ui", |
61 ] | 63 ] |
62 | 64 |
63 if (is_linux && !is_android) { | 65 if (is_linux && !is_android) { |
64 deps += [ "//components/font_service:manifest" ] | 66 deps += [ "//components/font_service:manifest" ] |
65 packaged_services += [ "font_service" ] | 67 packaged_services += [ "font_service" ] |
66 } | 68 } |
67 } | 69 } |
| 70 |
| 71 service_manifest("browser_manifest") { |
| 72 name = "content_browser" |
| 73 source = "${root_out_dir}/Packages/chrome_content_browser/manifest.json" |
| 74 output_name = "chrome_mash_content_browser" |
| 75 deps = [ |
| 76 "//chrome/app:chrome_content_browser_manifest", |
| 77 ] |
| 78 overlays = [ "chrome_mash_content_browser_manifest_overlay.json" ] |
| 79 } |
OLD | NEW |