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

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: rebase 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') | ipc/ipc_channel.h » ('J')
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': [
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 '../build/isolate.gypi', 313 '../build/isolate.gypi',
306 ], 314 ],
307 'sources': [ 315 'sources': [
308 'ipc_tests.isolate', 316 'ipc_tests.isolate',
309 ], 317 ],
310 }, 318 },
311 ], 319 ],
312 }], 320 }],
313 ], 321 ],
314 } 322 }
OLDNEW
« no previous file with comments | « ipc/BUILD.gn ('k') | ipc/ipc.mojom » ('j') | ipc/ipc_channel.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698