| 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("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//services/catalog/public/tools/catalog.gni") | 7 import("//services/catalog/public/tools/catalog.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 | 9 |
| 10 assert(enable_package_mash_services) | 10 assert(enable_package_mash_services) |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//services/service_manager/runner/host:lib", | 34 "//services/service_manager/runner/host:lib", |
| 35 "//services/service_manager/standalone", | 35 "//services/service_manager/standalone", |
| 36 "//services/ui/public/interfaces:constants", | 36 "//services/ui/public/interfaces:constants", |
| 37 "//url", | 37 "//url", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 if (is_chromeos) { | 40 if (is_chromeos) { |
| 41 deps += [ "//ash/resources" ] | 41 deps += [ "//ash/resources" ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 if (is_posix) { |
| 45 deps += [ "//chrome/app:shutdown_signal_handlers" ] |
| 46 } |
| 47 |
| 44 if (is_linux && !is_android) { | 48 if (is_linux && !is_android) { |
| 45 deps += [ "//components/font_service:lib" ] | 49 deps += [ "//components/font_service:lib" ] |
| 46 } | 50 } |
| 47 } | 51 } |
| 48 | 52 |
| 49 service_manifest("mash_manifest") { | 53 service_manifest("mash_manifest") { |
| 50 name = "chrome_mash" | 54 name = "chrome_mash" |
| 51 source = "chrome_mash_manifest.json" | 55 source = "chrome_mash_manifest.json" |
| 52 packaged_services = [ | 56 packaged_services = [ |
| 53 "//ash/autoclick/mus:manifest", | 57 "//ash/autoclick/mus:manifest", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 catalog = ":catalog" | 92 catalog = ":catalog" |
| 89 generated_function_name = "CreateChromeMashCatalog" | 93 generated_function_name = "CreateChromeMashCatalog" |
| 90 } | 94 } |
| 91 | 95 |
| 92 source_set("mash_service_overrides") { | 96 source_set("mash_service_overrides") { |
| 93 testonly = true | 97 testonly = true |
| 94 data = [ | 98 data = [ |
| 95 "mash_service_overrides.json", | 99 "mash_service_overrides.json", |
| 96 ] | 100 ] |
| 97 } | 101 } |
| OLD | NEW |