| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 executable("connect_test_exe") { | 140 executable("connect_test_exe") { |
| 141 testonly = true | 141 testonly = true |
| 142 | 142 |
| 143 sources = [ | 143 sources = [ |
| 144 "connect_test_exe.cc", | 144 "connect_test_exe.cc", |
| 145 ] | 145 ] |
| 146 | 146 |
| 147 deps = [ | 147 deps = [ |
| 148 ":interfaces", | 148 ":interfaces", |
| 149 "//base", | 149 "//base", |
| 150 "//build/config/sanitizers:deps", | 150 "//build/config:exe_and_shlib_deps", |
| 151 "//build/win:default_exe_manifest", | 151 "//build/win:default_exe_manifest", |
| 152 "//services/service_manager/public/cpp", | 152 "//services/service_manager/public/cpp", |
| 153 "//services/service_manager/public/cpp/standalone_service:main", | 153 "//services/service_manager/public/cpp/standalone_service:main", |
| 154 ] | 154 ] |
| 155 } | 155 } |
| 156 | 156 |
| 157 service_manifest("connect_test_exe_manifest") { | 157 service_manifest("connect_test_exe_manifest") { |
| 158 name = "connect_test_exe" | 158 name = "connect_test_exe" |
| 159 source = "connect_test_exe_manifest.json" | 159 source = "connect_test_exe_manifest.json" |
| 160 } | 160 } |
| 161 | 161 |
| 162 catalog("catalog") { | 162 catalog("catalog") { |
| 163 embedded_services = [ ":manifest" ] | 163 embedded_services = [ ":manifest" ] |
| 164 | 164 |
| 165 standalone_services = [ | 165 standalone_services = [ |
| 166 ":connect_test_app_manifest", | 166 ":connect_test_app_manifest", |
| 167 ":connect_test_class_app_manifest", | 167 ":connect_test_class_app_manifest", |
| 168 ":connect_test_exe_manifest", | 168 ":connect_test_exe_manifest", |
| 169 ":connect_test_package_manifest", | 169 ":connect_test_package_manifest", |
| 170 ":connect_test_singleton_app_manifest", | 170 ":connect_test_singleton_app_manifest", |
| 171 ] | 171 ] |
| 172 } | 172 } |
| OLD | NEW |