| 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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//mojo/public/mojo_application_manifest.gni") | 6 import("//mojo/public/mojo_application_manifest.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 source_set("connect") { | 10 source_set("connect") { |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 executable("connect_test_driver") { | 145 executable("connect_test_driver") { |
| 146 testonly = true | 146 testonly = true |
| 147 | 147 |
| 148 sources = [ | 148 sources = [ |
| 149 "connect_test_driver.cc", | 149 "connect_test_driver.cc", |
| 150 ] | 150 ] |
| 151 | 151 |
| 152 deps = [ | 152 deps = [ |
| 153 ":interfaces", | 153 ":interfaces", |
| 154 "//base", | 154 "//base", |
| 155 "//build/win:default_exe_manifest", |
| 155 "//services/shell/public/cpp", | 156 "//services/shell/public/cpp", |
| 156 "//services/shell/runner/child:test_native_main", | 157 "//services/shell/runner/child:test_native_main", |
| 157 "//services/shell/tests:util", | 158 "//services/shell/tests:util", |
| 158 ] | 159 ] |
| 159 | 160 |
| 160 data_deps = [ | 161 data_deps = [ |
| 161 ":connect_test_driver_manifest", | 162 ":connect_test_driver_manifest", |
| 162 ] | 163 ] |
| 163 } | 164 } |
| 164 | 165 |
| 165 mojo_application_manifest("connect_test_driver_manifest") { | 166 mojo_application_manifest("connect_test_driver_manifest") { |
| 166 type = "exe" | 167 type = "exe" |
| 167 application_name = "connect_test_driver" | 168 application_name = "connect_test_driver" |
| 168 source = "connect_test_driver_manifest.json" | 169 source = "connect_test_driver_manifest.json" |
| 169 } | 170 } |
| 170 | 171 |
| 171 executable("connect_test_exe") { | 172 executable("connect_test_exe") { |
| 172 testonly = true | 173 testonly = true |
| 173 | 174 |
| 174 sources = [ | 175 sources = [ |
| 175 "connect_test_exe.cc", | 176 "connect_test_exe.cc", |
| 176 ] | 177 ] |
| 177 | 178 |
| 178 deps = [ | 179 deps = [ |
| 179 ":interfaces", | 180 ":interfaces", |
| 180 "//base", | 181 "//base", |
| 182 "//build/win:default_exe_manifest", |
| 181 "//services/shell/public/cpp", | 183 "//services/shell/public/cpp", |
| 182 "//services/shell/runner/child:test_native_main", | 184 "//services/shell/runner/child:test_native_main", |
| 183 ] | 185 ] |
| 184 | 186 |
| 185 data_deps = [ | 187 data_deps = [ |
| 186 ":connect_test_exe_manifest", | 188 ":connect_test_exe_manifest", |
| 187 ] | 189 ] |
| 188 } | 190 } |
| 189 | 191 |
| 190 mojo_application_manifest("connect_test_exe_manifest") { | 192 mojo_application_manifest("connect_test_exe_manifest") { |
| 191 type = "exe" | 193 type = "exe" |
| 192 application_name = "connect_test_exe" | 194 application_name = "connect_test_exe" |
| 193 source = "connect_test_exe_manifest.json" | 195 source = "connect_test_exe_manifest.json" |
| 194 } | 196 } |
| OLD | NEW |