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

Side by Side Diff: ipc/ipc.gyp

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 | « ipc/BUILD.gn ('k') | ipc/ipc_channel_mojo.h » ('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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'ipc.gypi', 10 'ipc.gypi',
(...skipping 27 matching lines...) Expand all
38 ], 38 ],
39 }, 39 },
40 { 40 {
41 'target_name': 'ipc_interfaces_mojom', 41 'target_name': 'ipc_interfaces_mojom',
42 'type': 'none', 42 'type': 'none',
43 'variables': { 43 'variables': {
44 'require_interface_bindings': 0, 44 'require_interface_bindings': 0,
45 'mojom_files': [ 45 'mojom_files': [
46 'ipc.mojom', 46 'ipc.mojom',
47 ], 47 ],
48 'use_new_wrapper_types': 'false',
49 }, 48 },
50 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 49 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
51 }, 50 },
52 { 51 {
53 'target_name': 'ipc_interfaces', 52 'target_name': 'ipc_interfaces',
54 'type': 'static_library', 53 'type': 'static_library',
55 'dependencies': [ 54 'dependencies': [
56 'ipc_interfaces_mojom', 55 'ipc_interfaces_mojom',
57 '../base/base.gyp:base', 56 '../base/base.gyp:base',
58 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', 57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation',
59 ], 58 ],
60 'include_dirs': [ 59 'include_dirs': [
61 '..', 60 '..',
62 ], 61 ],
63 }, 62 },
64 { 63 {
65 'target_name': 'ipc_test_interfaces', 64 'target_name': 'ipc_test_interfaces',
66 'type': 'static_library', 65 'type': 'static_library',
67 'sources': [ 66 'sources': [
68 'ipc_test.mojom', 67 'ipc_test.mojom',
69 ], 68 ],
70 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 69 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
71 'variables': {
72 'use_new_wrapper_types': 'false',
73 },
74 }, 70 },
75 { 71 {
76 'target_name': 'ipc_run_all_unittests', 72 'target_name': 'ipc_run_all_unittests',
77 'type': 'static_library', 73 'type': 'static_library',
78 'dependencies': [ 74 'dependencies': [
79 '../base/base.gyp:base', 75 '../base/base.gyp:base',
80 '../base/base.gyp:test_support_base', 76 '../base/base.gyp:test_support_base',
81 '../mojo/mojo_edk.gyp:mojo_common_test_support', 77 '../mojo/mojo_edk.gyp:mojo_common_test_support',
82 '../mojo/mojo_edk.gyp:mojo_system_impl', 78 '../mojo/mojo_edk.gyp:mojo_system_impl',
83 '../testing/gtest.gyp:gtest', 79 '../testing/gtest.gyp:gtest',
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 '../build/isolate.gypi', 314 '../build/isolate.gypi',
319 ], 315 ],
320 'sources': [ 316 'sources': [
321 'ipc_tests.isolate', 317 'ipc_tests.isolate',
322 ], 318 ],
323 }, 319 },
324 ], 320 ],
325 }], 321 }],
326 ], 322 ],
327 } 323 }
OLDNEW
« no previous file with comments | « ipc/BUILD.gn ('k') | ipc/ipc_channel_mojo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698