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", | 17 "//components/resource_provider:lib", |
18 "//content/public/common", | 18 "//content/public/common", |
19 "//mash/browser_driver:lib", | 19 "//mash/browser_driver:lib", |
20 "//mash/quick_launch:lib", | 20 "//mash/quick_launch:lib", |
21 "//mash/session:lib", | 21 "//mash/session:lib", |
22 "//mash/task_viewer:lib", | 22 "//mash/task_viewer:lib", |
23 "//mash/wm:lib", | 23 "//mash/wm:lib", |
24 "//mojo/shell", | 24 "//services/shell", |
25 "//mojo/shell/background:lib", | 25 "//services/shell/background:lib", |
26 "//mojo/shell/public/cpp", | 26 "//services/shell/public/cpp", |
27 "//mojo/shell/public/interfaces", | 27 "//services/shell/public/interfaces", |
28 "//mojo/shell/runner/common", | 28 "//services/shell/runner/common", |
29 "//mojo/shell/runner/host:child_process_base", | 29 "//services/shell/runner/host:child_process_base", |
30 "//mojo/shell/runner/host:lib", | 30 "//services/shell/runner/host:lib", |
31 "//url", | 31 "//url", |
32 ] | 32 ] |
33 data_deps = [ | 33 data_deps = [ |
34 ":manifest", | 34 ":manifest", |
35 ] | 35 ] |
36 | 36 |
37 if (is_linux && !is_android) { | 37 if (is_linux && !is_android) { |
38 deps += [ "//components/font_service:lib" ] | 38 deps += [ "//components/font_service:lib" ] |
39 } | 39 } |
40 } | 40 } |
(...skipping 21 matching lines...) Expand all Loading... |
62 "quick_launch", | 62 "quick_launch", |
63 "resource_provider", | 63 "resource_provider", |
64 "task_viewer", | 64 "task_viewer", |
65 ] | 65 ] |
66 | 66 |
67 if (is_linux && !is_android) { | 67 if (is_linux && !is_android) { |
68 deps += [ "//components/font_service:manifest" ] | 68 deps += [ "//components/font_service:manifest" ] |
69 packaged_applications += [ "font_service" ] | 69 packaged_applications += [ "font_service" ] |
70 } | 70 } |
71 } | 71 } |
OLD | NEW |