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