| 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 = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//services/catalog/public/interfaces", | 22 "//services/catalog/public/interfaces", |
| 23 "//services/service_manager", | 23 "//services/service_manager", |
| 24 "//services/service_manager/background:lib", | 24 "//services/service_manager/background:lib", |
| 25 "//services/service_manager/public/cpp", | 25 "//services/service_manager/public/cpp", |
| 26 "//services/service_manager/public/cpp/standalone_service", | 26 "//services/service_manager/public/cpp/standalone_service", |
| 27 "//services/service_manager/public/interfaces", | 27 "//services/service_manager/public/interfaces", |
| 28 "//services/service_manager/runner:init", | 28 "//services/service_manager/runner:init", |
| 29 "//services/service_manager/runner/common", | 29 "//services/service_manager/runner/common", |
| 30 "//services/service_manager/runner/host:lib", | 30 "//services/service_manager/runner/host:lib", |
| 31 "//services/service_manager/standalone", | 31 "//services/service_manager/standalone", |
| 32 "//services/ui/public/interfaces:constants", |
| 32 "//url", | 33 "//url", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 if (is_chromeos) { | 36 if (is_chromeos) { |
| 36 sources += [ | 37 sources += [ |
| 37 "mash_crash_reporter_client.cc", | 38 "mash_crash_reporter_client.cc", |
| 38 "mash_crash_reporter_client.h", | 39 "mash_crash_reporter_client.h", |
| 39 ] | 40 ] |
| 40 deps += [ | 41 deps += [ |
| 41 "//ash/resources", | 42 "//ash/resources", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 83 |
| 83 catalog("catalog") { | 84 catalog("catalog") { |
| 84 embedded_services = [ ":mash_manifest" ] | 85 embedded_services = [ ":mash_manifest" ] |
| 85 catalog_deps = [ "//chrome/app:catalog" ] | 86 catalog_deps = [ "//chrome/app:catalog" ] |
| 86 } | 87 } |
| 87 | 88 |
| 88 catalog_cpp_source("chrome_mash_catalog") { | 89 catalog_cpp_source("chrome_mash_catalog") { |
| 89 catalog = ":catalog" | 90 catalog = ":catalog" |
| 90 generated_function_name = "CreateChromeMashCatalog" | 91 generated_function_name = "CreateChromeMashCatalog" |
| 91 } | 92 } |
| OLD | NEW |