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