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

Side by Side Diff: ipc/mojo/ipc_mojo.gyp

Issue 553283002: IPC::ChannelMojo: Introduce IPC::MojoBootstrap for Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed build error Created 6 years, 2 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/mojo/ipc_channel_mojo_unittest.cc ('k') | ipc/mojo/ipc_mojo_bootstrap.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 ], 10 ],
(...skipping 10 matching lines...) Expand all
21 '../ipc.gyp:ipc', 21 '../ipc.gyp:ipc',
22 '../../base/base.gyp:base', 22 '../../base/base.gyp:base',
23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 23 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings', 24 '../../mojo/mojo_base.gyp:mojo_cpp_bindings',
25 '../../mojo/mojo_base.gyp:mojo_environment_chromium', 25 '../../mojo/mojo_base.gyp:mojo_environment_chromium',
26 '../../mojo/mojo_base.gyp:mojo_system_impl', 26 '../../mojo/mojo_base.gyp:mojo_system_impl',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'ipc_channel_mojo.cc', 29 'ipc_channel_mojo.cc',
30 'ipc_channel_mojo.h', 30 'ipc_channel_mojo.h',
31 'ipc_channel_mojo_host.cc',
32 'ipc_channel_mojo_host.h',
31 'ipc_channel_mojo_readers.cc', 33 'ipc_channel_mojo_readers.cc',
32 'ipc_channel_mojo_readers.h', 34 'ipc_channel_mojo_readers.h',
35 'ipc_mojo_bootstrap.cc',
36 'ipc_mojo_bootstrap.h',
33 'ipc_message_pipe_reader.cc', 37 'ipc_message_pipe_reader.cc',
34 'ipc_message_pipe_reader.h', 38 'ipc_message_pipe_reader.h',
35 ], 39 ],
36 # TODO(gregoryd): direct_dependent_settings should be shared with the 40 # TODO(gregoryd): direct_dependent_settings should be shared with the
37 # 64-bit target, but it doesn't work due to a bug in gyp 41 # 64-bit target, but it doesn't work due to a bug in gyp
38 'direct_dependent_settings': { 42 'direct_dependent_settings': {
39 'include_dirs': [ 43 'include_dirs': [
40 '..', 44 '..',
41 ], 45 ],
42 }, 46 },
(...skipping 12 matching lines...) Expand all
55 '../../mojo/mojo_base.gyp:mojo_system_impl', 59 '../../mojo/mojo_base.gyp:mojo_system_impl',
56 '../../testing/gtest.gyp:gtest', 60 '../../testing/gtest.gyp:gtest',
57 'ipc_mojo', 61 'ipc_mojo',
58 ], 62 ],
59 'include_dirs': [ 63 'include_dirs': [
60 '..' 64 '..'
61 ], 65 ],
62 'sources': [ 66 'sources': [
63 'run_all_unittests.cc', 67 'run_all_unittests.cc',
64 'ipc_channel_mojo_unittest.cc', 68 'ipc_channel_mojo_unittest.cc',
69 'ipc_mojo_bootstrap_unittest.cc',
65 ], 70 ],
66 'conditions': [ 71 'conditions': [
67 ], 72 ],
68 }, 73 },
69 { 74 {
70 'target_name': 'ipc_mojo_perftests', 75 'target_name': 'ipc_mojo_perftests',
71 'type': '<(gtest_target_type)', 76 'type': '<(gtest_target_type)',
72 'dependencies': [ 77 'dependencies': [
73 '../ipc.gyp:ipc', 78 '../ipc.gyp:ipc',
74 '../ipc.gyp:test_support_ipc', 79 '../ipc.gyp:test_support_ipc',
(...skipping 11 matching lines...) Expand all
86 '..' 91 '..'
87 ], 92 ],
88 'sources': [ 93 'sources': [
89 'ipc_mojo_perftest.cc', 94 'ipc_mojo_perftest.cc',
90 ], 95 ],
91 'conditions': [ 96 'conditions': [
92 ], 97 ],
93 }, 98 },
94 ], 99 ],
95 } 100 }
OLDNEW
« no previous file with comments | « ipc/mojo/ipc_channel_mojo_unittest.cc ('k') | ipc/mojo/ipc_mojo_bootstrap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698