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

Side by Side Diff: mojo/mojo.gyp

Issue 60103005: Mojo: First stab at making MessagePipes work across OS pipes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 { 73 {
74 'target_name': 'mojo_system', 74 'target_name': 'mojo_system',
75 'type': '<(component)', 75 'type': '<(component)',
76 'dependencies': [ 76 'dependencies': [
77 '../base/base.gyp:base', 77 '../base/base.gyp:base',
78 ], 78 ],
79 'defines': [ 79 'defines': [
80 'MOJO_SYSTEM_IMPLEMENTATION', 80 'MOJO_SYSTEM_IMPLEMENTATION',
81 ], 81 ],
82 'sources': [ 82 'sources': [
83 'system/channel.cc',
84 'system/channel.h',
83 'system/core.cc', 85 'system/core.cc',
84 'system/core_impl.cc', 86 'system/core_impl.cc',
85 'system/core_impl.h', 87 'system/core_impl.h',
86 'system/dispatcher.cc', 88 'system/dispatcher.cc',
87 'system/dispatcher.h', 89 'system/dispatcher.h',
88 'system/limits.h', 90 'system/limits.h',
89 'system/local_message_pipe_endpoint.cc', 91 'system/local_message_pipe_endpoint.cc',
90 'system/local_message_pipe_endpoint.h', 92 'system/local_message_pipe_endpoint.h',
91 'system/memory.cc', 93 'system/memory.cc',
92 'system/memory.h', 94 'system/memory.h',
93 'system/message_in_transit.cc', 95 'system/message_in_transit.cc',
94 'system/message_in_transit.h', 96 'system/message_in_transit.h',
95 'system/message_pipe.cc', 97 'system/message_pipe.cc',
96 'system/message_pipe.h', 98 'system/message_pipe.h',
97 'system/message_pipe_dispatcher.cc', 99 'system/message_pipe_dispatcher.cc',
98 'system/message_pipe_dispatcher.h', 100 'system/message_pipe_dispatcher.h',
99 'system/message_pipe_endpoint.cc', 101 'system/message_pipe_endpoint.cc',
100 'system/message_pipe_endpoint.h', 102 'system/message_pipe_endpoint.h',
101 'system/platform_channel_handle.h', 103 'system/platform_channel_handle.h',
104 'system/proxy_message_pipe_endpoint.cc',
105 'system/proxy_message_pipe_endpoint.h',
102 'system/raw_channel.h', 106 'system/raw_channel.h',
103 'system/raw_channel_posix.cc', 107 'system/raw_channel_posix.cc',
108 'system/raw_channel_win.cc',
104 'system/simple_dispatcher.cc', 109 'system/simple_dispatcher.cc',
105 'system/simple_dispatcher.h', 110 'system/simple_dispatcher.h',
106 'system/waiter.cc', 111 'system/waiter.cc',
107 'system/waiter.h', 112 'system/waiter.h',
108 'system/waiter_list.cc', 113 'system/waiter_list.cc',
109 'system/waiter_list.h', 114 'system/waiter_list.h',
110 ], 115 ],
111 'direct_dependent_settings': { 116 'direct_dependent_settings': {
112 'include_dirs': [ 117 'include_dirs': [
113 '..', 118 '..',
114 ], 119 ],
115 }, 120 },
116 }, 121 },
117 { 122 {
118 'target_name': 'mojo_system_unittests', 123 'target_name': 'mojo_system_unittests',
119 'type': 'executable', 124 'type': 'executable',
120 'dependencies': [ 125 'dependencies': [
121 '../base/base.gyp:run_all_unittests', 126 '../base/base.gyp:run_all_unittests',
122 '../testing/gtest.gyp:gtest', 127 '../testing/gtest.gyp:gtest',
123 'mojo_system', 128 'mojo_system',
124 ], 129 ],
125 'sources': [ 130 'sources': [
126 'system/core_impl_unittest.cc', 131 'system/core_impl_unittest.cc',
127 'system/core_test_base.cc', 132 'system/core_test_base.cc',
128 'system/core_test_base.h', 133 'system/core_test_base.h',
129 'system/dispatcher_unittest.cc', 134 'system/dispatcher_unittest.cc',
130 'system/message_pipe_dispatcher_unittest.cc', 135 'system/message_pipe_dispatcher_unittest.cc',
131 'system/message_pipe_unittest.cc', 136 'system/message_pipe_unittest.cc',
132 'system/raw_channel_posix_unittest.cc', 137 'system/raw_channel_posix_unittest.cc',
138 'system/remote_message_pipe_posix_unittest.cc',
133 'system/simple_dispatcher_unittest.cc', 139 'system/simple_dispatcher_unittest.cc',
134 'system/test_utils.cc', 140 'system/test_utils.cc',
135 'system/test_utils.h', 141 'system/test_utils.h',
136 'system/waiter_list_unittest.cc', 142 'system/waiter_list_unittest.cc',
137 'system/waiter_test_utils.cc', 143 'system/waiter_test_utils.cc',
138 'system/waiter_test_utils.h', 144 'system/waiter_test_utils.h',
139 'system/waiter_unittest.cc', 145 'system/waiter_unittest.cc',
140 ], 146 ],
141 }, 147 },
142 { 148 {
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 410 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
405 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 411 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
406 'native_lib_target': 'libmojo_shell', 412 'native_lib_target': 'libmojo_shell',
407 }, 413 },
408 'includes': [ '../build/java_apk.gypi' ], 414 'includes': [ '../build/java_apk.gypi' ],
409 } 415 }
410 ], 416 ],
411 }], 417 }],
412 ], 418 ],
413 } 419 }
OLDNEW
« base/compiler_specific.h ('K') | « base/compiler_specific.h ('k') | mojo/system/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698