| 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/catalog/public/tools/catalog.gni") | 5 import("//services/catalog/public/tools/catalog.gni") |
| 6 import("//services/service_manager/public/service_manifest.gni") | 6 import("//services/service_manager/public/service_manifest.gni") |
| 7 | 7 |
| 8 source_set("mash") { | 8 source_set("mash") { |
| 9 sources = [ | 9 sources = [ |
| 10 "mash_runner.cc", | 10 "mash_runner.cc", |
| 11 "mash_runner.h", | 11 "mash_runner.h", |
| 12 ] | 12 ] |
| 13 deps = [ | 13 deps = [ |
| 14 ":catalog_cpp_source", | 14 ":chrome_mash_catalog", |
| 15 "//base:i18n", | 15 "//base:i18n", |
| 16 "//components/tracing:startup_tracing", | 16 "//components/tracing:startup_tracing", |
| 17 "//content/public/common", | 17 "//content/public/common", |
| 18 "//mash/package", | 18 "//mash/package", |
| 19 "//mash/session/public/interfaces:constants", | 19 "//mash/session/public/interfaces:constants", |
| 20 "//services/catalog/public/interfaces", | 20 "//services/catalog/public/interfaces", |
| 21 "//services/service_manager", | 21 "//services/service_manager", |
| 22 "//services/service_manager/background:lib", | 22 "//services/service_manager/background:lib", |
| 23 "//services/service_manager/public/cpp", | 23 "//services/service_manager/public/cpp", |
| 24 "//services/service_manager/public/cpp/standalone_service", | 24 "//services/service_manager/public/cpp/standalone_service", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 if (is_linux && !is_android) { | 70 if (is_linux && !is_android) { |
| 71 packaged_services += [ "//components/font_service:manifest" ] | 71 packaged_services += [ "//components/font_service:manifest" ] |
| 72 } | 72 } |
| 73 } | 73 } |
| 74 | 74 |
| 75 catalog("catalog") { | 75 catalog("catalog") { |
| 76 embedded_services = [ ":mash_manifest" ] | 76 embedded_services = [ ":mash_manifest" ] |
| 77 catalog_deps = [ "//chrome/app:catalog" ] | 77 catalog_deps = [ "//chrome/app:catalog" ] |
| 78 } | 78 } |
| 79 | 79 |
| 80 catalog_cpp_source("catalog_cpp_source") { | 80 catalog_cpp_source("chrome_mash_catalog") { |
| 81 catalog = ":catalog" | 81 catalog = ":catalog" |
| 82 output_symbol_name = "kChromeMashCatalogContents" | 82 generated_function_name = "CreateChromeMashCatalog" |
| 83 } | 83 } |
| OLD | NEW |