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

Side by Side Diff: mojo/mojo.gyp

Issue 139823003: Mojo: Move system embedder API files to mojo/system/embedder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « mojo/common/test/run_all_unittests.cc ('k') | mojo/shell/context.cc » ('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 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 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'system/core_impl.cc', 100 'system/core_impl.cc',
101 'system/core_impl.h', 101 'system/core_impl.h',
102 'system/data_pipe.cc', 102 'system/data_pipe.cc',
103 'system/data_pipe.h', 103 'system/data_pipe.h',
104 'system/data_pipe_consumer_dispatcher.cc', 104 'system/data_pipe_consumer_dispatcher.cc',
105 'system/data_pipe_consumer_dispatcher.h', 105 'system/data_pipe_consumer_dispatcher.h',
106 'system/data_pipe_producer_dispatcher.cc', 106 'system/data_pipe_producer_dispatcher.cc',
107 'system/data_pipe_producer_dispatcher.h', 107 'system/data_pipe_producer_dispatcher.h',
108 'system/dispatcher.cc', 108 'system/dispatcher.cc',
109 'system/dispatcher.h', 109 'system/dispatcher.h',
110 'system/embedder.cc', 110 'system/embedder/embedder.cc',
111 'system/embedder.h', 111 'system/embedder/embedder.h',
112 'system/embedder/platform_channel_pair.cc',
113 'system/embedder/platform_channel_pair.h',
114 'system/embedder/platform_channel_pair_posix.cc',
115 'system/embedder/platform_handle.cc',
116 'system/embedder/platform_handle.h',
117 'system/embedder/scoped_platform_handle.h',
112 'system/local_data_pipe.cc', 118 'system/local_data_pipe.cc',
113 'system/local_data_pipe.h', 119 'system/local_data_pipe.h',
114 'system/local_message_pipe_endpoint.cc', 120 'system/local_message_pipe_endpoint.cc',
115 'system/local_message_pipe_endpoint.h', 121 'system/local_message_pipe_endpoint.h',
116 'system/memory.cc', 122 'system/memory.cc',
117 'system/memory.h', 123 'system/memory.h',
118 'system/message_in_transit.cc', 124 'system/message_in_transit.cc',
119 'system/message_in_transit.h', 125 'system/message_in_transit.h',
120 'system/message_pipe.cc', 126 'system/message_pipe.cc',
121 'system/message_pipe.h', 127 'system/message_pipe.h',
122 'system/message_pipe_dispatcher.cc', 128 'system/message_pipe_dispatcher.cc',
123 'system/message_pipe_dispatcher.h', 129 'system/message_pipe_dispatcher.h',
124 'system/message_pipe_endpoint.cc', 130 'system/message_pipe_endpoint.cc',
125 'system/message_pipe_endpoint.h', 131 'system/message_pipe_endpoint.h',
126 'system/platform_channel_pair.cc',
127 'system/platform_channel_pair.h',
128 'system/platform_channel_pair_posix.cc',
129 'system/platform_handle.cc',
130 'system/platform_handle.h',
131 'system/proxy_message_pipe_endpoint.cc', 132 'system/proxy_message_pipe_endpoint.cc',
132 'system/proxy_message_pipe_endpoint.h', 133 'system/proxy_message_pipe_endpoint.h',
133 'system/raw_channel.h', 134 'system/raw_channel.h',
134 'system/raw_channel_posix.cc', 135 'system/raw_channel_posix.cc',
135 'system/raw_channel_win.cc', 136 'system/raw_channel_win.cc',
136 'system/scoped_platform_handle.h',
137 'system/simple_dispatcher.cc', 137 'system/simple_dispatcher.cc',
138 'system/simple_dispatcher.h', 138 'system/simple_dispatcher.h',
139 'system/waiter.cc', 139 'system/waiter.cc',
140 'system/waiter.h', 140 'system/waiter.h',
141 'system/waiter_list.cc', 141 'system/waiter_list.cc',
142 'system/waiter_list.h', 142 'system/waiter_list.h',
143 ], 143 ],
144 }, 144 },
145 { 145 {
146 'target_name': 'mojo_system_unittests', 146 'target_name': 'mojo_system_unittests',
147 'type': 'executable', 147 'type': 'executable',
148 'dependencies': [ 148 'dependencies': [
149 '../base/base.gyp:run_all_unittests', 149 '../base/base.gyp:run_all_unittests',
150 '../testing/gtest.gyp:gtest', 150 '../testing/gtest.gyp:gtest',
151 'mojo_common_test_support', 151 'mojo_common_test_support',
152 'mojo_system', 152 'mojo_system',
153 'mojo_system_impl', 153 'mojo_system_impl',
154 ], 154 ],
155 'sources': [ 155 'sources': [
156 'system/core_impl_unittest.cc', 156 'system/core_impl_unittest.cc',
157 'system/core_test_base.cc', 157 'system/core_test_base.cc',
158 'system/core_test_base.h', 158 'system/core_test_base.h',
159 'system/data_pipe_unittest.cc', 159 'system/data_pipe_unittest.cc',
160 'system/dispatcher_unittest.cc', 160 'system/dispatcher_unittest.cc',
161 'system/embedder_unittest.cc', 161 'system/embedder/embedder_unittest.cc',
162 'system/local_data_pipe_unittest.cc', 162 'system/local_data_pipe_unittest.cc',
163 'system/message_pipe_dispatcher_unittest.cc', 163 'system/message_pipe_dispatcher_unittest.cc',
164 'system/message_pipe_unittest.cc', 164 'system/message_pipe_unittest.cc',
165 'system/multiprocess_message_pipe_unittest.cc', 165 'system/multiprocess_message_pipe_unittest.cc',
166 'system/raw_channel_posix_unittest.cc', 166 'system/raw_channel_posix_unittest.cc',
167 'system/remote_message_pipe_posix_unittest.cc', 167 'system/remote_message_pipe_posix_unittest.cc',
168 'system/simple_dispatcher_unittest.cc', 168 'system/simple_dispatcher_unittest.cc',
169 'system/test_embedder.cc', 169 # TODO(vtl): Move this to mojo_system_impl (and mojo_system_impl's
170 'system/test_embedder.h', 170 # exports).
171 'system/embedder/test_embedder.cc',
172 'system/embedder/test_embedder.h',
171 'system/test_utils.cc', 173 'system/test_utils.cc',
172 'system/test_utils.h', 174 'system/test_utils.h',
173 'system/waiter_list_unittest.cc', 175 'system/waiter_list_unittest.cc',
174 'system/waiter_test_utils.cc', 176 'system/waiter_test_utils.cc',
175 'system/waiter_test_utils.h', 177 'system/waiter_test_utils.h',
176 'system/waiter_unittest.cc', 178 'system/waiter_unittest.cc',
177 ], 179 ],
178 }, 180 },
179 { 181 {
180 'target_name': 'mojo_gles2', 182 'target_name': 'mojo_gles2',
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 480 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
479 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 481 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
480 'native_lib_target': 'libmojo_shell', 482 'native_lib_target': 'libmojo_shell',
481 }, 483 },
482 'includes': [ '../build/java_apk.gypi' ], 484 'includes': [ '../build/java_apk.gypi' ],
483 } 485 }
484 ], 486 ],
485 }], 487 }],
486 ], 488 ],
487 } 489 }
OLDNEW
« no previous file with comments | « mojo/common/test/run_all_unittests.cc ('k') | mojo/shell/context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698