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

Side by Side Diff: ipc/BUILD.gn

Issue 2199623002: Revert of 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: Created 4 years, 4 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
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
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 }
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