| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//services/catalog/public/tools/catalog.gni") | 6 import("//services/catalog/public/tools/catalog.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 | 8 |
| 9 source_set("mash") { | 9 source_set("mash") { |
| 10 sources = [ | 10 sources = [ |
| 11 "mash_runner.cc", | 11 "mash_runner.cc", |
| 12 "mash_runner.h", | 12 "mash_runner.h", |
| 13 ] | 13 ] |
| 14 deps = [ | 14 deps = [ |
| 15 ":chrome_mash_catalog", | 15 ":chrome_mash_catalog", |
| 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/common", |
| 19 "//mash/package", | 20 "//mash/package", |
| 20 "//mash/session/public/interfaces:constants", | 21 "//mash/quick_launch/public/interfaces:constants", |
| 21 "//services/catalog/public/interfaces", | 22 "//services/catalog/public/interfaces", |
| 22 "//services/service_manager", | 23 "//services/service_manager", |
| 23 "//services/service_manager/background:lib", | 24 "//services/service_manager/background:lib", |
| 24 "//services/service_manager/public/cpp", | 25 "//services/service_manager/public/cpp", |
| 25 "//services/service_manager/public/cpp/standalone_service", | 26 "//services/service_manager/public/cpp/standalone_service", |
| 26 "//services/service_manager/public/interfaces", | 27 "//services/service_manager/public/interfaces", |
| 27 "//services/service_manager/runner:init", | 28 "//services/service_manager/runner:init", |
| 28 "//services/service_manager/runner/common", | 29 "//services/service_manager/runner/common", |
| 29 "//services/service_manager/runner/host:lib", | 30 "//services/service_manager/runner/host:lib", |
| 30 "//services/service_manager/standalone", | 31 "//services/service_manager/standalone", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 51 } | 52 } |
| 52 | 53 |
| 53 service_manifest("mash_manifest") { | 54 service_manifest("mash_manifest") { |
| 54 name = "chrome_mash" | 55 name = "chrome_mash" |
| 55 source = "chrome_mash_manifest.json" | 56 source = "chrome_mash_manifest.json" |
| 56 packaged_services = [ | 57 packaged_services = [ |
| 57 "//ash/autoclick/mus:manifest", | 58 "//ash/autoclick/mus:manifest", |
| 58 "//ash/touch_hud/mus:manifest", | 59 "//ash/touch_hud/mus:manifest", |
| 59 "//mash/catalog_viewer:manifest", | 60 "//mash/catalog_viewer:manifest", |
| 60 "//mash/quick_launch:manifest", | 61 "//mash/quick_launch:manifest", |
| 61 "//mash/session:manifest", | |
| 62 "//mash/task_viewer:manifest", | 62 "//mash/task_viewer:manifest", |
| 63 "//services/ui:manifest", | 63 "//services/ui:manifest", |
| 64 "//services/ui/ime/test_ime_driver:manifest", | 64 "//services/ui/ime/test_ime_driver:manifest", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 if (is_chromeos) { | 67 if (is_chromeos) { |
| 68 packaged_services += [ "//ash/mus:manifest" ] | 68 packaged_services += [ "//ash/mus:manifest" ] |
| 69 } | 69 } |
| 70 | 70 |
| 71 if (is_linux && !is_android) { | 71 if (is_linux && !is_android) { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 82 | 82 |
| 83 catalog("catalog") { | 83 catalog("catalog") { |
| 84 embedded_services = [ ":mash_manifest" ] | 84 embedded_services = [ ":mash_manifest" ] |
| 85 catalog_deps = [ "//chrome/app:catalog" ] | 85 catalog_deps = [ "//chrome/app:catalog" ] |
| 86 } | 86 } |
| 87 | 87 |
| 88 catalog_cpp_source("chrome_mash_catalog") { | 88 catalog_cpp_source("chrome_mash_catalog") { |
| 89 catalog = ":catalog" | 89 catalog = ":catalog" |
| 90 generated_function_name = "CreateChromeMashCatalog" | 90 generated_function_name = "CreateChromeMashCatalog" |
| 91 } | 91 } |
| OLD | NEW |