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

Side by Side Diff: ipc/ipc.gyp

Issue 2137353002: Adds associated interface support to IPC::Channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@channel-bindings-1
Patch Set: . Created 4 years, 5 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.mojom » ('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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 'dependencies': [ 54 'dependencies': [
55 'ipc_interfaces_mojom', 55 'ipc_interfaces_mojom',
56 '../base/base.gyp:base', 56 '../base/base.gyp:base',
57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', 57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation',
58 ], 58 ],
59 'include_dirs': [ 59 'include_dirs': [
60 '..', 60 '..',
61 ], 61 ],
62 }, 62 },
63 { 63 {
64 'target_name': 'ipc_test_interfaces',
65 'type': 'static_library',
66 'sources': [
67 'ipc_test.mojom',
68 ],
69 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
70 },
71 {
64 'target_name': 'ipc_run_all_unittests', 72 'target_name': 'ipc_run_all_unittests',
65 'type': 'static_library', 73 'type': 'static_library',
66 'dependencies': [ 74 'dependencies': [
67 '../base/base.gyp:base', 75 '../base/base.gyp:base',
68 '../base/base.gyp:test_support_base', 76 '../base/base.gyp:test_support_base',
69 '../mojo/mojo_edk.gyp:mojo_common_test_support', 77 '../mojo/mojo_edk.gyp:mojo_common_test_support',
70 '../mojo/mojo_edk.gyp:mojo_system_impl', 78 '../mojo/mojo_edk.gyp:mojo_system_impl',
71 '../testing/gtest.gyp:gtest', 79 '../testing/gtest.gyp:gtest',
72 ], 80 ],
73 'include_dirs': [ 81 'include_dirs': [
74 '..', 82 '..',
75 ], 83 ],
76 'sources': [ 84 'sources': [
77 'run_all_unittests.cc', 85 'run_all_unittests.cc',
78 ], 86 ],
79 }, 87 },
80 { 88 {
81 'target_name': 'ipc_tests', 89 'target_name': 'ipc_tests',
82 'type': '<(gtest_target_type)', 90 'type': '<(gtest_target_type)',
83 'dependencies': [ 91 'dependencies': [
84 'ipc', 92 'ipc',
85 'ipc_run_all_unittests', 93 'ipc_run_all_unittests',
94 'ipc_test_interfaces',
86 'test_support_ipc', 95 'test_support_ipc',
87 '../base/base.gyp:base', 96 '../base/base.gyp:base',
88 '../base/base.gyp:base_i18n', 97 '../base/base.gyp:base_i18n',
89 '../base/base.gyp:test_support_base', 98 '../base/base.gyp:test_support_base',
90 '../crypto/crypto.gyp:crypto', 99 '../crypto/crypto.gyp:crypto',
91 '../mojo/mojo_public.gyp:mojo_cpp_bindings', 100 '../mojo/mojo_public.gyp:mojo_cpp_bindings',
92 '../mojo/mojo_public.gyp:mojo_cpp_system', 101 '../mojo/mojo_public.gyp:mojo_cpp_system',
93 '../testing/gtest.gyp:gtest', 102 '../testing/gtest.gyp:gtest',
94 ], 103 ],
95 'include_dirs': [ 104 'include_dirs': [
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 '../build/isolate.gypi', 314 '../build/isolate.gypi',
306 ], 315 ],
307 'sources': [ 316 'sources': [
308 'ipc_tests.isolate', 317 'ipc_tests.isolate',
309 ], 318 ],
310 }, 319 },
311 ], 320 ],
312 }], 321 }],
313 ], 322 ],
314 } 323 }
OLDNEW
« no previous file with comments | « ipc/BUILD.gn ('k') | ipc/ipc.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698