| 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 18 matching lines...) Expand all Loading... |
| 29 ":lifecycle_unittest_parent", | 29 ":lifecycle_unittest_parent", |
| 30 ":lifecycle_unittest_exe", | 30 ":lifecycle_unittest_exe", |
| 31 ":lifecycle_unittest_package", | 31 ":lifecycle_unittest_package", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 mojom("interfaces") { | 35 mojom("interfaces") { |
| 36 sources = [ | 36 sources = [ |
| 37 "lifecycle_unittest.mojom", | 37 "lifecycle_unittest.mojom", |
| 38 ] | 38 ] |
| 39 |
| 40 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. |
| 41 use_once_callback = false |
| 39 } | 42 } |
| 40 | 43 |
| 41 service_manifest("manifest") { | 44 service_manifest("manifest") { |
| 42 name = "lifecycle_unittest" | 45 name = "lifecycle_unittest" |
| 43 source = "lifecycle_unittest_manifest.json" | 46 source = "lifecycle_unittest_manifest.json" |
| 44 } | 47 } |
| 45 | 48 |
| 46 service_manifest("lifecycle_unittest_package_app_a_manifest") { | 49 service_manifest("lifecycle_unittest_package_app_a_manifest") { |
| 47 name = "lifecycle_unittest_package_app_a" | 50 name = "lifecycle_unittest_package_app_a" |
| 48 source = "package_app_a_manifest.json" | 51 source = "package_app_a_manifest.json" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 catalog("catalog") { | 150 catalog("catalog") { |
| 148 embedded_services = [ ":manifest" ] | 151 embedded_services = [ ":manifest" ] |
| 149 | 152 |
| 150 standalone_services = [ | 153 standalone_services = [ |
| 151 ":lifecycle_unittest_app_manifest", | 154 ":lifecycle_unittest_app_manifest", |
| 152 ":lifecycle_unittest_exe_manifest", | 155 ":lifecycle_unittest_exe_manifest", |
| 153 ":lifecycle_unittest_package_manifest", | 156 ":lifecycle_unittest_package_manifest", |
| 154 ":lifecycle_unittest_parent_manifest", | 157 ":lifecycle_unittest_parent_manifest", |
| 155 ] | 158 ] |
| 156 } | 159 } |
| OLD | NEW |