| 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/mus:lib", | |
| 14 "//ash/resources", | 13 "//ash/resources", |
| 15 "//ash/touch_hud/mus:lib", | |
| 16 "//base:i18n", | 14 "//base:i18n", |
| 17 "//components/tracing:startup_tracing", | 15 "//components/tracing:startup_tracing", |
| 18 "//content/public/common", | 16 "//content/public/common", |
| 19 "//mash/package", | 17 "//mash/package", |
| 20 "//services/shell", | 18 "//services/shell", |
| 21 "//services/shell/background:lib", | 19 "//services/shell/background:lib", |
| 22 "//services/shell/public/cpp", | 20 "//services/shell/public/cpp", |
| 23 "//services/shell/public/interfaces", | 21 "//services/shell/public/interfaces", |
| 24 "//services/shell/runner/common", | 22 "//services/shell/runner/common", |
| 25 "//services/shell/runner/host:child_process_base", | 23 "//services/shell/runner/host:child_process_base", |
| 26 "//services/shell/runner/host:lib", | 24 "//services/shell/runner/host:lib", |
| 27 "//url", | 25 "//url", |
| 28 ] | 26 ] |
| 29 data_deps = [ | 27 data_deps = [ |
| 30 ":manifest", | 28 ":manifest", |
| 31 ] | 29 ] |
| 32 | 30 |
| 33 if (is_linux && !is_android) { | 31 if (is_linux && !is_android) { |
| 34 deps += [ "//components/font_service:lib" ] | 32 deps += [ "//components/font_service:lib" ] |
| 35 } | 33 } |
| 36 } | 34 } |
| 37 | 35 |
| 38 service_manifest("manifest") { | 36 service_manifest("manifest") { |
| 39 type = "exe" | 37 type = "exe" |
| 40 name = "chrome_mash" | 38 name = "chrome_mash" |
| 41 source = "chrome_mash_manifest.json" | 39 source = "chrome_mash_manifest.json" |
| 42 deps = [ | 40 deps = [ |
| 41 "//ash/autoclick/mus:manifest", |
| 43 "//ash/mus:manifest", | 42 "//ash/mus:manifest", |
| 44 "//ash/touch_hud/mus:manifest", | 43 "//ash/touch_hud/mus:manifest", |
| 45 "//mash/app_driver:manifest", | 44 "//mash/app_driver:manifest", |
| 46 "//mash/quick_launch:manifest", | 45 "//mash/quick_launch:manifest", |
| 47 "//mash/session:manifest", | 46 "//mash/session:manifest", |
| 48 "//mash/task_viewer:manifest", | 47 "//mash/task_viewer:manifest", |
| 49 "//services/ui:manifest", | 48 "//services/ui:manifest", |
| 50 "//services/ui/ime/test_ime_driver:manifest", | 49 "//services/ui/ime/test_ime_driver:manifest", |
| 51 ] | 50 ] |
| 52 packaged_services = [ | 51 packaged_services = [ |
| 52 "accessibility_autoclick", |
| 53 "app_driver", | 53 "app_driver", |
| 54 "ash", | 54 "ash", |
| 55 "mash_session", | 55 "mash_session", |
| 56 "quick_launch", | 56 "quick_launch", |
| 57 "task_viewer", | 57 "task_viewer", |
| 58 "test_ime_driver", | 58 "test_ime_driver", |
| 59 "touch_hud", | 59 "touch_hud", |
| 60 "ui", | 60 "ui", |
| 61 ] | 61 ] |
| 62 | 62 |
| 63 if (is_linux && !is_android) { | 63 if (is_linux && !is_android) { |
| 64 deps += [ "//components/font_service:manifest" ] | 64 deps += [ "//components/font_service:manifest" ] |
| 65 packaged_services += [ "font_service" ] | 65 packaged_services += [ "font_service" ] |
| 66 } | 66 } |
| 67 } | 67 } |
| OLD | NEW |