| 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/cpp/service.gni") | 6 import("//services/service_manager/public/cpp/service.gni") |
| 7 import("//services/service_manager/public/service_manifest.gni") | 7 import("//services/service_manager/public/service_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 } | 128 } |
| 129 | 129 |
| 130 executable("lifecycle_unittest_exe") { | 130 executable("lifecycle_unittest_exe") { |
| 131 testonly = true | 131 testonly = true |
| 132 sources = [ | 132 sources = [ |
| 133 "lifecycle_exe.cc", | 133 "lifecycle_exe.cc", |
| 134 ] | 134 ] |
| 135 deps = [ | 135 deps = [ |
| 136 ":app_client", | 136 ":app_client", |
| 137 "//base", | 137 "//base", |
| 138 "//build/config/sanitizers:deps", | 138 "//build/config:exe_and_shlib_deps", |
| 139 "//build/win:default_exe_manifest", | 139 "//build/win:default_exe_manifest", |
| 140 "//services/service_manager/public/cpp", | 140 "//services/service_manager/public/cpp", |
| 141 "//services/service_manager/public/cpp/standalone_service:main", | 141 "//services/service_manager/public/cpp/standalone_service:main", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 service_manifest("lifecycle_unittest_exe_manifest") { | 145 service_manifest("lifecycle_unittest_exe_manifest") { |
| 146 name = "lifecycle_unittest_exe" | 146 name = "lifecycle_unittest_exe" |
| 147 source = "exe_manifest.json" | 147 source = "exe_manifest.json" |
| 148 } | 148 } |
| 149 | 149 |
| 150 catalog("catalog") { | 150 catalog("catalog") { |
| 151 embedded_services = [ ":manifest" ] | 151 embedded_services = [ ":manifest" ] |
| 152 | 152 |
| 153 standalone_services = [ | 153 standalone_services = [ |
| 154 ":lifecycle_unittest_app_manifest", | 154 ":lifecycle_unittest_app_manifest", |
| 155 ":lifecycle_unittest_exe_manifest", | 155 ":lifecycle_unittest_exe_manifest", |
| 156 ":lifecycle_unittest_package_manifest", | 156 ":lifecycle_unittest_package_manifest", |
| 157 ":lifecycle_unittest_parent_manifest", | 157 ":lifecycle_unittest_parent_manifest", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| OLD | NEW |