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") { |
11 testonly = true | 11 testonly = true |
12 sources = [ | 12 sources = [ |
13 "connect_unittest.cc", | 13 "connect_unittest.cc", |
14 ] | 14 ] |
15 deps = [ | 15 deps = [ |
16 ":interfaces", | 16 ":interfaces", |
17 "//base", | 17 "//base", |
18 "//base/test:test_support", | 18 "//base/test:test_support", |
19 "//services/shell/public/cpp:shell_test_support", | 19 "//services/shell/public/cpp:service_test_support", |
20 "//services/shell/public/cpp:sources", | 20 "//services/shell/public/cpp:sources", |
21 "//services/shell/public/interfaces", | 21 "//services/shell/public/interfaces", |
22 ] | 22 ] |
23 | 23 |
24 data_deps = [ | 24 data_deps = [ |
25 ":connect_test_app", | 25 ":connect_test_app", |
26 ":connect_test_class_app", | 26 ":connect_test_class_app", |
27 ":connect_test_singleton_app", | 27 ":connect_test_singleton_app", |
28 ":connect_test_driver", | 28 ":connect_test_driver", |
29 ":connect_test_exe", | 29 ":connect_test_exe", |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 data_deps = [ | 195 data_deps = [ |
196 ":connect_test_exe_manifest", | 196 ":connect_test_exe_manifest", |
197 ] | 197 ] |
198 } | 198 } |
199 | 199 |
200 mojo_application_manifest("connect_test_exe_manifest") { | 200 mojo_application_manifest("connect_test_exe_manifest") { |
201 type = "exe" | 201 type = "exe" |
202 application_name = "connect_test_exe" | 202 application_name = "connect_test_exe" |
203 source = "connect_test_exe_manifest.json" | 203 source = "connect_test_exe_manifest.json" |
204 } | 204 } |
OLD | NEW |