| 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", | 13 "//ash/mus:lib", |
| 14 "//ash/resources", | 14 "//ash/resources", |
| 15 "//ash/touch_hud/mus:lib", | 15 "//ash/touch_hud/mus:lib", |
| 16 "//base:i18n", | 16 "//base:i18n", |
| 17 "//components/tracing:startup_tracing", | 17 "//components/tracing:startup_tracing", |
| 18 "//content/public/common", | 18 "//content/public/common", |
| 19 "//mash/app_driver:lib", | 19 "//mash/package", |
| 20 "//mash/quick_launch:lib", | |
| 21 "//mash/session:lib", | |
| 22 "//mash/task_viewer:lib", | |
| 23 "//services/shell", | 20 "//services/shell", |
| 24 "//services/shell/background:lib", | 21 "//services/shell/background:lib", |
| 25 "//services/shell/public/cpp", | 22 "//services/shell/public/cpp", |
| 26 "//services/shell/public/interfaces", | 23 "//services/shell/public/interfaces", |
| 27 "//services/shell/runner/common", | 24 "//services/shell/runner/common", |
| 28 "//services/shell/runner/host:child_process_base", | 25 "//services/shell/runner/host:child_process_base", |
| 29 "//services/shell/runner/host:lib", | 26 "//services/shell/runner/host:lib", |
| 30 "//services/ui:lib", | |
| 31 "//url", | 27 "//url", |
| 32 ] | 28 ] |
| 33 data_deps = [ | 29 data_deps = [ |
| 34 ":manifest", | 30 ":manifest", |
| 35 ] | 31 ] |
| 36 | 32 |
| 37 if (is_linux && !is_android) { | 33 if (is_linux && !is_android) { |
| 38 deps += [ "//components/font_service:lib" ] | 34 deps += [ "//components/font_service:lib" ] |
| 39 } | 35 } |
| 40 } | 36 } |
| (...skipping 19 matching lines...) Expand all Loading... |
| 60 "task_viewer", | 56 "task_viewer", |
| 61 "touch_hud", | 57 "touch_hud", |
| 62 "ui", | 58 "ui", |
| 63 ] | 59 ] |
| 64 | 60 |
| 65 if (is_linux && !is_android) { | 61 if (is_linux && !is_android) { |
| 66 deps += [ "//components/font_service:manifest" ] | 62 deps += [ "//components/font_service:manifest" ] |
| 67 packaged_services += [ "font_service" ] | 63 packaged_services += [ "font_service" ] |
| 68 } | 64 } |
| 69 } | 65 } |
| OLD | NEW |