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 ":chrome_manifest", | |
14 ":manifest", | |
15 "//ash/mus:lib", | 13 "//ash/mus:lib", |
16 "//ash/resources", | 14 "//ash/resources", |
17 "//base:i18n", | 15 "//base:i18n", |
18 "//components/mus:lib", | 16 "//components/mus:lib", |
19 "//components/resource_provider:lib", | 17 "//components/resource_provider:lib", |
20 "//content/public/common", | 18 "//content/public/common", |
21 "//mash/quick_launch:lib", | 19 "//mash/quick_launch:lib", |
22 "//mash/shell:lib", | 20 "//mash/shell:lib", |
23 "//mash/wm:lib", | 21 "//mash/wm:lib", |
24 "//mojo/shell", | 22 "//mojo/shell", |
25 "//mojo/shell/background:lib", | 23 "//mojo/shell/background:lib", |
26 "//mojo/shell/public/cpp", | 24 "//mojo/shell/public/cpp", |
27 "//mojo/shell/public/interfaces", | 25 "//mojo/shell/public/interfaces", |
28 "//mojo/shell/runner/common", | 26 "//mojo/shell/runner/common", |
29 "//mojo/shell/runner/host:child_process_base", | 27 "//mojo/shell/runner/host:child_process_base", |
30 "//mojo/shell/runner/host:lib", | 28 "//mojo/shell/runner/host:lib", |
31 "//url", | 29 "//url", |
32 ] | 30 ] |
| 31 data_deps = [ |
| 32 ":chrome_manifest", |
| 33 ":manifest", |
| 34 ] |
33 | 35 |
34 if (is_linux && !is_android) { | 36 if (is_linux && !is_android) { |
35 deps += [ "//components/font_service:lib" ] | 37 deps += [ "//components/font_service:lib" ] |
36 } | 38 } |
37 } | 39 } |
38 | 40 |
39 mojo_application_manifest("manifest") { | 41 mojo_application_manifest("manifest") { |
40 type = "exe" | 42 type = "exe" |
41 application_name = "chrome_mash" | 43 application_name = "chrome_mash" |
42 source = "chrome_mash_manifest.json" | 44 source = "chrome_mash_manifest.json" |
(...skipping 18 matching lines...) Expand all Loading... |
61 deps += [ "//components/font_service:manifest" ] | 63 deps += [ "//components/font_service:manifest" ] |
62 packaged_applications += [ "font_service" ] | 64 packaged_applications += [ "font_service" ] |
63 } | 65 } |
64 } | 66 } |
65 | 67 |
66 mojo_application_manifest("chrome_manifest") { | 68 mojo_application_manifest("chrome_manifest") { |
67 type = "exe" | 69 type = "exe" |
68 application_name = "chrome" | 70 application_name = "chrome" |
69 source = "chrome_manifest.json" | 71 source = "chrome_manifest.json" |
70 } | 72 } |
OLD | NEW |