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", | |
15 "//base:i18n", | 14 "//base:i18n", |
16 "//components/mus:lib", | 15 "//components/mus:lib", |
17 "//content/public/common", | 16 "//content/public/common", |
18 "//mash/app_driver:lib", | 17 "//mash/app_driver:lib", |
19 "//mash/quick_launch:lib", | 18 "//mash/quick_launch:lib", |
20 "//mash/session:lib", | 19 "//mash/session:lib", |
21 "//mash/task_viewer:lib", | 20 "//mash/task_viewer:lib", |
22 "//mash/wm:lib", | 21 "//mash/wm:lib", |
23 "//services/shell", | 22 "//services/shell", |
24 "//services/shell/background:lib", | 23 "//services/shell/background:lib", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "mus", | 58 "mus", |
60 "quick_launch", | 59 "quick_launch", |
61 "task_viewer", | 60 "task_viewer", |
62 ] | 61 ] |
63 | 62 |
64 if (is_linux && !is_android) { | 63 if (is_linux && !is_android) { |
65 deps += [ "//components/font_service:manifest" ] | 64 deps += [ "//components/font_service:manifest" ] |
66 packaged_applications += [ "font_service" ] | 65 packaged_applications += [ "font_service" ] |
67 } | 66 } |
68 } | 67 } |
OLD | NEW |