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 21 matching lines...) Expand all Loading... |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 mojom("interfaces") { | 35 mojom("interfaces") { |
36 sources = [ | 36 sources = [ |
37 "connect_test.mojom", | 37 "connect_test.mojom", |
38 ] | 38 ] |
39 deps = [ | 39 deps = [ |
40 "//services/shell/public/interfaces", | 40 "//services/shell/public/interfaces", |
41 ] | 41 ] |
| 42 |
| 43 use_new_wrapper_types = false |
42 } | 44 } |
43 | 45 |
44 mojo_application_manifest("manifest") { | 46 mojo_application_manifest("manifest") { |
45 application_name = "connect_unittests" | 47 application_name = "connect_unittests" |
46 source = "connect_unittests_manifest.json" | 48 source = "connect_unittests_manifest.json" |
47 } | 49 } |
48 | 50 |
49 mojo_application_manifest("connect_test_a_manifest") { | 51 mojo_application_manifest("connect_test_a_manifest") { |
50 application_name = "connect_test_a" | 52 application_name = "connect_test_a" |
51 source = "connect_test_app_a_manifest.json" | 53 source = "connect_test_app_a_manifest.json" |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 data_deps = [ | 197 data_deps = [ |
196 ":connect_test_exe_manifest", | 198 ":connect_test_exe_manifest", |
197 ] | 199 ] |
198 } | 200 } |
199 | 201 |
200 mojo_application_manifest("connect_test_exe_manifest") { | 202 mojo_application_manifest("connect_test_exe_manifest") { |
201 type = "exe" | 203 type = "exe" |
202 application_name = "connect_test_exe" | 204 application_name = "connect_test_exe" |
203 source = "connect_test_exe_manifest.json" | 205 source = "connect_test_exe_manifest.json" |
204 } | 206 } |
OLD | NEW |