| 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 "//chrome/common:constants", |
| 17 "//components/tracing:startup_tracing", | 18 "//components/tracing:startup_tracing", |
| 18 "//content/public/common", | 19 "//content/public/common", |
| 19 "//mash/common", | 20 "//mash/common", |
| 20 "//mash/package", | 21 "//mash/package", |
| 21 "//mash/quick_launch/public/interfaces:constants", | 22 "//mash/quick_launch/public/interfaces:constants", |
| 22 "//services/catalog/public/interfaces", | 23 "//services/catalog/public/interfaces", |
| 23 "//services/service_manager", | 24 "//services/service_manager", |
| 24 "//services/service_manager/background:lib", | 25 "//services/service_manager/background:lib", |
| 25 "//services/service_manager/public/cpp", | 26 "//services/service_manager/public/cpp", |
| 26 "//services/service_manager/public/cpp/standalone_service", | 27 "//services/service_manager/public/cpp/standalone_service", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 74 |
| 74 catalog("catalog") { | 75 catalog("catalog") { |
| 75 embedded_services = [ ":mash_manifest" ] | 76 embedded_services = [ ":mash_manifest" ] |
| 76 catalog_deps = [ "//chrome/app:catalog" ] | 77 catalog_deps = [ "//chrome/app:catalog" ] |
| 77 } | 78 } |
| 78 | 79 |
| 79 catalog_cpp_source("chrome_mash_catalog") { | 80 catalog_cpp_source("chrome_mash_catalog") { |
| 80 catalog = ":catalog" | 81 catalog = ":catalog" |
| 81 generated_function_name = "CreateChromeMashCatalog" | 82 generated_function_name = "CreateChromeMashCatalog" |
| 82 } | 83 } |
| OLD | NEW |