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", |
(...skipping 29 matching lines...) Expand all Loading... |
40 name = "chrome_mash" | 40 name = "chrome_mash" |
41 source = "chrome_mash_manifest.json" | 41 source = "chrome_mash_manifest.json" |
42 deps = [ | 42 deps = [ |
43 "//ash/mus:manifest", | 43 "//ash/mus:manifest", |
44 "//ash/touch_hud/mus:manifest", | 44 "//ash/touch_hud/mus:manifest", |
45 "//mash/app_driver:manifest", | 45 "//mash/app_driver:manifest", |
46 "//mash/quick_launch:manifest", | 46 "//mash/quick_launch:manifest", |
47 "//mash/session:manifest", | 47 "//mash/session:manifest", |
48 "//mash/task_viewer:manifest", | 48 "//mash/task_viewer:manifest", |
49 "//services/ui:manifest", | 49 "//services/ui:manifest", |
| 50 "//services/ui/ime/test_ime_driver:manifest", |
50 ] | 51 ] |
51 packaged_services = [ | 52 packaged_services = [ |
52 "app_driver", | 53 "app_driver", |
53 "ash", | 54 "ash", |
54 "mash_session", | 55 "mash_session", |
55 "quick_launch", | 56 "quick_launch", |
56 "task_viewer", | 57 "task_viewer", |
| 58 "test_ime_driver", |
57 "touch_hud", | 59 "touch_hud", |
58 "ui", | 60 "ui", |
59 ] | 61 ] |
60 | 62 |
61 if (is_linux && !is_android) { | 63 if (is_linux && !is_android) { |
62 deps += [ "//components/font_service:manifest" ] | 64 deps += [ "//components/font_service:manifest" ] |
63 packaged_services += [ "font_service" ] | 65 packaged_services += [ "font_service" ] |
64 } | 66 } |
65 } | 67 } |
OLD | NEW |