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

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: 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 { 61 {
62 'target_name': 'mojo_system', 62 'target_name': 'mojo_system',
63 'type': '<(component)', 63 'type': '<(component)',
64 'dependencies': [ 64 'dependencies': [
65 '../base/base.gyp:base', 65 '../base/base.gyp:base',
66 ], 66 ],
67 'defines': [ 67 'defines': [
68 'MOJO_SYSTEM_IMPLEMENTATION', 68 'MOJO_SYSTEM_IMPLEMENTATION',
69 ], 69 ],
70 'sources': [ 70 'sources': [
71 'system/channel.cc',
72 'system/channel.h',
71 'system/core.cc', 73 'system/core.cc',
72 'system/core_impl.cc', 74 'system/core_impl.cc',
73 'system/core_impl.h', 75 'system/core_impl.h',
74 'system/dispatcher.cc', 76 'system/dispatcher.cc',
75 'system/dispatcher.h', 77 'system/dispatcher.h',
76 'system/limits.h', 78 'system/limits.h',
77 'system/local_message_pipe_endpoint.cc', 79 'system/local_message_pipe_endpoint.cc',
78 'system/local_message_pipe_endpoint.h', 80 'system/local_message_pipe_endpoint.h',
79 'system/memory.cc', 81 'system/memory.cc',
80 'system/memory.h', 82 'system/memory.h',
81 'system/message_in_transit.cc', 83 'system/message_in_transit.cc',
82 'system/message_in_transit.h', 84 'system/message_in_transit.h',
83 'system/message_pipe.cc', 85 'system/message_pipe.cc',
84 'system/message_pipe.h', 86 'system/message_pipe.h',
85 'system/message_pipe_dispatcher.cc', 87 'system/message_pipe_dispatcher.cc',
86 'system/message_pipe_dispatcher.h', 88 'system/message_pipe_dispatcher.h',
87 'system/message_pipe_endpoint.cc', 89 'system/message_pipe_endpoint.cc',
88 'system/message_pipe_endpoint.h', 90 'system/message_pipe_endpoint.h',
89 'system/platform_channel_handle.h', 91 'system/platform_channel_handle.h',
92 'system/proxy_message_pipe_endpoint.cc',
93 'system/proxy_message_pipe_endpoint.h',
90 'system/raw_channel.h', 94 'system/raw_channel.h',
91 'system/raw_channel_posix.cc', 95 'system/raw_channel_posix.cc',
92 'system/simple_dispatcher.cc', 96 'system/simple_dispatcher.cc',
93 'system/simple_dispatcher.h', 97 'system/simple_dispatcher.h',
94 'system/waiter.cc', 98 'system/waiter.cc',
95 'system/waiter.h', 99 'system/waiter.h',
96 'system/waiter_list.cc', 100 'system/waiter_list.cc',
97 'system/waiter_list.h', 101 'system/waiter_list.h',
98 ], 102 ],
99 'direct_dependent_settings': { 103 'direct_dependent_settings': {
(...skipping 11 matching lines...) Expand all
111 'mojo_system', 115 'mojo_system',
112 ], 116 ],
113 'sources': [ 117 'sources': [
114 'system/core_impl_unittest.cc', 118 'system/core_impl_unittest.cc',
115 'system/core_test_base.cc', 119 'system/core_test_base.cc',
116 'system/core_test_base.h', 120 'system/core_test_base.h',
117 'system/dispatcher_unittest.cc', 121 'system/dispatcher_unittest.cc',
118 'system/message_pipe_dispatcher_unittest.cc', 122 'system/message_pipe_dispatcher_unittest.cc',
119 'system/message_pipe_unittest.cc', 123 'system/message_pipe_unittest.cc',
120 'system/raw_channel_posix_unittest.cc', 124 'system/raw_channel_posix_unittest.cc',
125 'system/remote_message_pipe_unittest.cc',
121 'system/simple_dispatcher_unittest.cc', 126 'system/simple_dispatcher_unittest.cc',
122 'system/test_utils.cc', 127 'system/test_utils.cc',
123 'system/test_utils.h', 128 'system/test_utils.h',
124 'system/waiter_list_unittest.cc', 129 'system/waiter_list_unittest.cc',
125 'system/waiter_test_utils.cc', 130 'system/waiter_test_utils.cc',
126 'system/waiter_test_utils.h', 131 'system/waiter_test_utils.h',
127 'system/waiter_unittest.cc', 132 'system/waiter_unittest.cc',
128 ], 133 ],
129 }, 134 },
130 { 135 {
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 396 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
392 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 397 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
393 'native_lib_target': 'libmojo_shell', 398 'native_lib_target': 'libmojo_shell',
394 }, 399 },
395 'includes': [ '../build/java_apk.gypi' ], 400 'includes': [ '../build/java_apk.gypi' ],
396 } 401 }
397 ], 402 ],
398 }], 403 }],
399 ], 404 ],
400 } 405 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698