Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: services/service_manager/tests/connect/BUILD.gn

Issue 2651953002: Revert of [Service Manager] Get rid of dynamic service discovery (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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")
6 import("//services/service_manager/public/cpp/service.gni") 5 import("//services/service_manager/public/cpp/service.gni")
7 import("//services/service_manager/public/service_manifest.gni") 6 import("//services/service_manager/public/service_manifest.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//testing/test.gni") 8 import("//testing/test.gni")
10 9
11 source_set("connect") { 10 source_set("connect") {
12 testonly = true 11 testonly = true
13 sources = [ 12 sources = [
14 "connect_unittest.cc", 13 "connect_unittest.cc",
15 ] 14 ]
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 "//services/service_manager/public/interfaces", 69 "//services/service_manager/public/interfaces",
71 ] 70 ]
72 data_deps = [ 71 data_deps = [
73 ":connect_test_package_manifest", 72 ":connect_test_package_manifest",
74 ] 73 ]
75 } 74 }
76 75
77 service_manifest("connect_test_package_manifest") { 76 service_manifest("connect_test_package_manifest") {
78 name = "connect_test_package" 77 name = "connect_test_package"
79 source = "connect_test_package_manifest.json" 78 source = "connect_test_package_manifest.json"
80 packaged_services = [ 79 deps = [
81 ":connect_test_a_manifest", 80 ":connect_test_a_manifest",
82 ":connect_test_b_manifest", 81 ":connect_test_b_manifest",
83 ] 82 ]
83 packaged_services = [
84 "connect_test_a",
85 "connect_test_b",
86 ]
84 } 87 }
85 88
86 service("connect_test_app") { 89 service("connect_test_app") {
87 testonly = true 90 testonly = true
88 sources = [ 91 sources = [
89 "connect_test_app.cc", 92 "connect_test_app.cc",
90 ] 93 ]
91 deps = [ 94 deps = [
92 ":interfaces", 95 ":interfaces",
93 "//base", 96 "//base",
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 167
165 data_deps = [ 168 data_deps = [
166 ":connect_test_exe_manifest", 169 ":connect_test_exe_manifest",
167 ] 170 ]
168 } 171 }
169 172
170 service_manifest("connect_test_exe_manifest") { 173 service_manifest("connect_test_exe_manifest") {
171 name = "connect_test_exe" 174 name = "connect_test_exe"
172 source = "connect_test_exe_manifest.json" 175 source = "connect_test_exe_manifest.json"
173 } 176 }
174
175 catalog("catalog") {
176 embedded_services = [ ":manifest" ]
177
178 standalone_services = [
179 ":connect_test_app_manifest",
180 ":connect_test_class_app_manifest",
181 ":connect_test_exe_manifest",
182 ":connect_test_package_manifest",
183 ":connect_test_singleton_app_manifest",
184 ]
185 }
OLDNEW
« no previous file with comments | « services/service_manager/tests/BUILD.gn ('k') | services/service_manager/tests/lifecycle/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698