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

Side by Side Diff: ipc/ipc.gyp

Issue 2183963002: 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 | « 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',
48 }, 49 },
49 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], 50 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ],
50 }, 51 },
51 { 52 {
52 'target_name': 'ipc_interfaces', 53 'target_name': 'ipc_interfaces',
53 'type': 'static_library', 54 'type': 'static_library',
54 'dependencies': [ 55 'dependencies': [
55 'ipc_interfaces_mojom', 56 'ipc_interfaces_mojom',
56 '../base/base.gyp:base', 57 '../base/base.gyp:base',
57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', 58 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation',
58 ], 59 ],
59 'include_dirs': [ 60 'include_dirs': [
60 '..', 61 '..',
61 ], 62 ],
62 }, 63 },
63 { 64 {
64 'target_name': 'ipc_test_interfaces', 65 'target_name': 'ipc_test_interfaces',
65 'type': 'static_library', 66 'type': 'static_library',
66 'sources': [ 67 'sources': [
67 'ipc_test.mojom', 68 'ipc_test.mojom',
68 ], 69 ],
69 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 70 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
71 'variables': {
72 'use_new_wrapper_types': 'false',
73 },
70 }, 74 },
71 { 75 {
72 'target_name': 'ipc_run_all_unittests', 76 'target_name': 'ipc_run_all_unittests',
73 'type': 'static_library', 77 'type': 'static_library',
74 'dependencies': [ 78 'dependencies': [
75 '../base/base.gyp:base', 79 '../base/base.gyp:base',
76 '../base/base.gyp:test_support_base', 80 '../base/base.gyp:test_support_base',
77 '../mojo/mojo_edk.gyp:mojo_common_test_support', 81 '../mojo/mojo_edk.gyp:mojo_common_test_support',
78 '../mojo/mojo_edk.gyp:mojo_system_impl', 82 '../mojo/mojo_edk.gyp:mojo_system_impl',
79 '../testing/gtest.gyp:gtest', 83 '../testing/gtest.gyp:gtest',
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 '../build/isolate.gypi', 318 '../build/isolate.gypi',
315 ], 319 ],
316 'sources': [ 320 'sources': [
317 'ipc_tests.isolate', 321 'ipc_tests.isolate',
318 ], 322 ],
319 }, 323 },
320 ], 324 ],
321 }], 325 }],
322 ], 326 ],
323 } 327 }
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