Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: ipc/BUILD.gn

Issue 2181443002: Mojo C++ bindings: make ipc/ mojom targets to use STL string/vector types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make further change to array_traits_stl.h to make MSan build happy. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ipc/ipc.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ipc/ipc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698