| 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/service_manager/public/service_manifest.gni") | 5 import("//services/service_manager/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 25 matching lines...) Expand all Loading... |
| 36 } | 36 } |
| 37 } | 37 } |
| 38 | 38 |
| 39 service_manifest("mash_manifest") { | 39 service_manifest("mash_manifest") { |
| 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/autoclick/mus:manifest", | 43 "//ash/autoclick/mus:manifest", |
| 44 "//ash/mus:manifest", | 44 "//ash/mus:manifest", |
| 45 "//ash/touch_hud/mus:manifest", | 45 "//ash/touch_hud/mus:manifest", |
| 46 "//mash/catalog_viewer:manifest", |
| 46 "//mash/quick_launch:manifest", | 47 "//mash/quick_launch:manifest", |
| 47 "//mash/session:manifest", | 48 "//mash/session:manifest", |
| 48 "//mash/task_viewer:manifest", | 49 "//mash/task_viewer:manifest", |
| 49 "//services/ui:manifest", | 50 "//services/ui:manifest", |
| 50 "//services/ui/ime/test_ime_driver:manifest", | 51 "//services/ui/ime/test_ime_driver:manifest", |
| 51 ] | 52 ] |
| 52 packaged_services = [ | 53 packaged_services = [ |
| 53 "accessibility_autoclick", | 54 "accessibility_autoclick", |
| 54 "ash", | 55 "ash", |
| 56 "catalog_viewer", |
| 55 "mash_session", | 57 "mash_session", |
| 56 "quick_launch", | 58 "quick_launch", |
| 57 "task_viewer", | 59 "task_viewer", |
| 58 "test_ime_driver", | 60 "test_ime_driver", |
| 59 "touch_hud", | 61 "touch_hud", |
| 60 "ui", | 62 "ui", |
| 61 ] | 63 ] |
| 62 | 64 |
| 63 if (is_linux && !is_android) { | 65 if (is_linux && !is_android) { |
| 64 deps += [ "//components/font_service:manifest" ] | 66 deps += [ "//components/font_service:manifest" ] |
| 65 packaged_services += [ "font_service" ] | 67 packaged_services += [ "font_service" ] |
| 66 } | 68 } |
| 67 } | 69 } |
| 68 | 70 |
| 69 service_manifest("browser_manifest") { | 71 service_manifest("browser_manifest") { |
| 70 name = "content_browser" | 72 name = "content_browser" |
| 71 source = "${root_out_dir}/Packages/chrome_content_browser/manifest.json" | 73 source = "${root_out_dir}/Packages/chrome_content_browser/manifest.json" |
| 72 output_name = "chrome_mash_content_browser" | 74 output_name = "chrome_mash_content_browser" |
| 73 deps = [ | 75 deps = [ |
| 74 "//chrome/app:chrome_content_browser_manifest", | 76 "//chrome/app:chrome_content_browser_manifest", |
| 75 ] | 77 ] |
| 76 overlays = [ "chrome_mash_content_browser_manifest_overlay.json" ] | 78 overlays = [ "chrome_mash_content_browser_manifest_overlay.json" ] |
| 77 } | 79 } |
| OLD | NEW |