OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
6 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 8 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
9 | 9 |
10 component("ipc") { | 10 component("ipc") { |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 | 156 |
157 if (enable_ipc_fuzzer) { | 157 if (enable_ipc_fuzzer) { |
158 public_configs = [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] | 158 public_configs = [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
159 } | 159 } |
160 } | 160 } |
161 | 161 |
162 mojom("mojom") { | 162 mojom("mojom") { |
163 sources = [ | 163 sources = [ |
164 "ipc.mojom", | 164 "ipc.mojom", |
165 ] | 165 ] |
| 166 |
| 167 use_new_wrapper_types = false |
166 } | 168 } |
167 | 169 |
168 mojom("test_interfaces") { | 170 mojom("test_interfaces") { |
169 testonly = true | 171 testonly = true |
170 sources = [ | 172 sources = [ |
171 "ipc_test.mojom", | 173 "ipc_test.mojom", |
172 ] | 174 ] |
| 175 |
| 176 use_new_wrapper_types = false |
173 } | 177 } |
174 | 178 |
175 # This is provided as a separate target so other targets can provide param | 179 # This is provided as a separate target so other targets can provide param |
176 # traits implementations without necessarily linking to all of IPC. | 180 # traits implementations without necessarily linking to all of IPC. |
177 source_set("param_traits") { | 181 source_set("param_traits") { |
178 public = [ | 182 public = [ |
179 "ipc_param_traits.h", | 183 "ipc_param_traits.h", |
180 ] | 184 ] |
181 } | 185 } |
182 | 186 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 public_deps = [ | 305 public_deps = [ |
302 ":ipc", | 306 ":ipc", |
303 ] | 307 ] |
304 deps = [ | 308 deps = [ |
305 "//base", | 309 "//base", |
306 "//base/test:test_support", | 310 "//base/test:test_support", |
307 "//testing/gtest", | 311 "//testing/gtest", |
308 ] | 312 ] |
309 } | 313 } |
310 } | 314 } |
OLD | NEW |