| 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 | |
| 168 } | 166 } |
| 169 | 167 |
| 170 mojom("test_interfaces") { | 168 mojom("test_interfaces") { |
| 171 testonly = true | 169 testonly = true |
| 172 sources = [ | 170 sources = [ |
| 173 "ipc_test.mojom", | 171 "ipc_test.mojom", |
| 174 ] | 172 ] |
| 175 | |
| 176 use_new_wrapper_types = false | |
| 177 } | 173 } |
| 178 | 174 |
| 179 # This is provided as a separate target so other targets can provide param | 175 # This is provided as a separate target so other targets can provide param |
| 180 # traits implementations without necessarily linking to all of IPC. | 176 # traits implementations without necessarily linking to all of IPC. |
| 181 source_set("param_traits") { | 177 source_set("param_traits") { |
| 182 public = [ | 178 public = [ |
| 183 "ipc_param_traits.h", | 179 "ipc_param_traits.h", |
| 184 ] | 180 ] |
| 185 } | 181 } |
| 186 | 182 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 public_deps = [ | 301 public_deps = [ |
| 306 ":ipc", | 302 ":ipc", |
| 307 ] | 303 ] |
| 308 deps = [ | 304 deps = [ |
| 309 "//base", | 305 "//base", |
| 310 "//base/test:test_support", | 306 "//base/test:test_support", |
| 311 "//testing/gtest", | 307 "//testing/gtest", |
| 312 ] | 308 ] |
| 313 } | 309 } |
| 314 } | 310 } |
| OLD | NEW |