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

Side by Side Diff: mojo/mojo_edk.gyp

Issue 1585493002: [mojo] Ports EDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'includes': [ 6 'includes': [
7 '../third_party/mojo/mojo_variables.gypi', 7 '../third_party/mojo/mojo_variables.gypi',
8 ], 8 ],
9 'target_defaults' : { 9 'target_defaults' : {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 10 matching lines...) Expand all
21 # GN version: //mojo/edk/system 21 # GN version: //mojo/edk/system
22 'target_name': 'mojo_system_impl2', 22 'target_name': 'mojo_system_impl2',
23 'type': 'static_library', 23 'type': 'static_library',
24 # TODO(use_chrome_edk): this should be a component to match third_party, 24 # TODO(use_chrome_edk): this should be a component to match third_party,
25 # but since third_party includes it, we either make it a static library 25 # but since third_party includes it, we either make it a static library
26 # or we have to change the export macros to be different than third_party. 26 # or we have to change the export macros to be different than third_party.
27 #'type': '<(component)', 27 #'type': '<(component)',
28 'dependencies': [ 28 'dependencies': [
29 '../base/base.gyp:base', 29 '../base/base.gyp:base',
30 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 30 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
31 '../crypto/crypto.gyp:crypto',
32 '../third_party/mojo/mojo_public.gyp:mojo_system_headers',
31 ], 33 ],
32 'defines': [ 34 'defines': [
33 'MOJO_SYSTEM_IMPL_IMPLEMENTATION', 35 'MOJO_SYSTEM_IMPL_IMPLEMENTATION',
34 'MOJO_SYSTEM_IMPLEMENTATION', 36 'MOJO_SYSTEM_IMPLEMENTATION',
35 'MOJO_USE_SYSTEM_IMPL', 37 'MOJO_USE_SYSTEM_IMPL',
36 ], 38 ],
37 'sources': [ 39 'sources': [
38 'edk/embedder/configuration.h', 40 'edk/embedder/configuration.h',
39 'edk/embedder/embedder.cc', 41 'edk/embedder/embedder.cc',
40 'edk/embedder/embedder.h', 42 'edk/embedder/embedder.h',
(...skipping 19 matching lines...) Expand all
60 'edk/embedder/simple_platform_shared_buffer_android.cc', 62 'edk/embedder/simple_platform_shared_buffer_android.cc',
61 'edk/embedder/simple_platform_shared_buffer_posix.cc', 63 'edk/embedder/simple_platform_shared_buffer_posix.cc',
62 'edk/embedder/simple_platform_shared_buffer_win.cc', 64 'edk/embedder/simple_platform_shared_buffer_win.cc',
63 'edk/embedder/simple_platform_support.cc', 65 'edk/embedder/simple_platform_support.cc',
64 'edk/embedder/simple_platform_support.h', 66 'edk/embedder/simple_platform_support.h',
65 'edk/system/awakable.h', 67 'edk/system/awakable.h',
66 'edk/system/awakable_list.cc', 68 'edk/system/awakable_list.cc',
67 'edk/system/awakable_list.h', 69 'edk/system/awakable_list.h',
68 'edk/system/async_waiter.cc', 70 'edk/system/async_waiter.cc',
69 'edk/system/async_waiter.h', 71 'edk/system/async_waiter.h',
70 'edk/system/broker.h', 72 'edk/system/channel.cc',
71 'edk/system/broker_messages.h', 73 'edk/system/channel.h',
72 'edk/system/broker_state.cc', 74 'edk/system/channel_posix.cc',
73 'edk/system/broker_state.h', 75 'edk/system/channel_win.cc',
74 'edk/system/child_broker_host.cc',
75 'edk/system/child_broker_host.h',
76 'edk/system/configuration.cc', 76 'edk/system/configuration.cc',
77 'edk/system/configuration.h', 77 'edk/system/configuration.h',
78 'edk/system/core.cc', 78 'edk/system/core.cc',
79 'edk/system/core.h', 79 'edk/system/core.h',
80 'edk/system/data_pipe.cc',
81 'edk/system/data_pipe.h',
82 'edk/system/data_pipe_consumer_dispatcher.cc', 80 'edk/system/data_pipe_consumer_dispatcher.cc',
83 'edk/system/data_pipe_consumer_dispatcher.h', 81 'edk/system/data_pipe_consumer_dispatcher.h',
82 'edk/system/data_pipe_control_message.cc',
83 'edk/system/data_pipe_control_message.h',
84 'edk/system/data_pipe_producer_dispatcher.cc', 84 'edk/system/data_pipe_producer_dispatcher.cc',
85 'edk/system/data_pipe_producer_dispatcher.h', 85 'edk/system/data_pipe_producer_dispatcher.h',
86 'edk/system/dispatcher.cc', 86 'edk/system/dispatcher.cc',
87 'edk/system/dispatcher.h', 87 'edk/system/dispatcher.h',
88 'edk/system/handle_signals_state.h', 88 'edk/system/handle_signals_state.h',
89 'edk/system/handle_table.cc', 89 'edk/system/handle_table.cc',
90 'edk/system/handle_table.h', 90 'edk/system/handle_table.h',
91 'edk/system/mapping_table.cc', 91 'edk/system/mapping_table.cc',
92 'edk/system/mapping_table.h', 92 'edk/system/mapping_table.h',
93 'edk/system/message_in_transit.cc',
94 'edk/system/message_in_transit.h',
95 'edk/system/message_in_transit_queue.cc',
96 'edk/system/message_in_transit_queue.h',
97 'edk/system/message_pipe_dispatcher.cc', 93 'edk/system/message_pipe_dispatcher.cc',
98 'edk/system/message_pipe_dispatcher.h', 94 'edk/system/message_pipe_dispatcher.h',
95 'edk/system/node_channel.cc',
96 'edk/system/node_channel.h',
97 'edk/system/node_controller.cc',
98 'edk/system/node_controller.h',
99 'edk/system/options_validation.h', 99 'edk/system/options_validation.h',
100 'edk/system/child_broker.cc',
101 'edk/system/child_broker.h',
102 'edk/system/platform_handle_dispatcher.cc', 100 'edk/system/platform_handle_dispatcher.cc',
103 'edk/system/platform_handle_dispatcher.h', 101 'edk/system/platform_handle_dispatcher.h',
104 'edk/system/raw_channel.cc', 102 'edk/system/ports/event.h',
105 'edk/system/raw_channel.h', 103 'edk/system/ports/hash_functions.h',
106 'edk/system/raw_channel_posix.cc', 104 'edk/system/ports/message.cc',
107 'edk/system/raw_channel_win.cc', 105 'edk/system/ports/message.h',
108 'edk/system/routed_raw_channel.cc', 106 'edk/system/ports/message_queue.cc',
109 'edk/system/routed_raw_channel.h', 107 'edk/system/ports/message_queue.h',
108 'edk/system/ports/name.cc',
109 'edk/system/ports/name.h',
110 'edk/system/ports/node.cc',
111 'edk/system/ports/node.h',
112 'edk/system/ports/node_delegate.h',
113 'edk/system/ports/port.cc',
114 'edk/system/ports/port.h',
115 'edk/system/ports/port_ref.cc',
116 'edk/system/ports/user_data.h',
117 'edk/system/ports_message.cc',
118 'edk/system/ports_message.h',
119 'edk/system/remote_message_pipe_bootstrap.cc',
120 'edk/system/remote_message_pipe_bootstrap.h',
110 'edk/system/shared_buffer_dispatcher.cc', 121 'edk/system/shared_buffer_dispatcher.cc',
111 'edk/system/shared_buffer_dispatcher.h', 122 'edk/system/shared_buffer_dispatcher.h',
112 'edk/system/simple_dispatcher.cc',
113 'edk/system/simple_dispatcher.h',
114 'edk/system/transport_data.cc',
115 'edk/system/transport_data.h',
116 'edk/system/wait_set_dispatcher.cc', 123 'edk/system/wait_set_dispatcher.cc',
117 'edk/system/wait_set_dispatcher.h', 124 'edk/system/wait_set_dispatcher.h',
118 'edk/system/waiter.cc', 125 'edk/system/waiter.cc',
119 'edk/system/waiter.h', 126 'edk/system/waiter.h',
120 # Test-only code: 127 # Test-only code:
121 # TODO(vtl): It's a little unfortunate that these end up in the same 128 # TODO(vtl): It's a little unfortunate that these end up in the same
122 # component as non-test-only code. In the static build, this code 129 # component as non-test-only code. In the static build, this code
123 # should hopefully be dead-stripped. 130 # should hopefully be dead-stripped.
124 'edk/embedder/test_embedder.cc', 131 'edk/embedder/test_embedder.cc',
125 'edk/embedder/test_embedder.h', 132 'edk/embedder/test_embedder.h',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 # GN version: //mojo/edk/test:test_support 198 # GN version: //mojo/edk/test:test_support
192 'target_name': 'mojo_common_test_support2', 199 'target_name': 'mojo_common_test_support2',
193 'type': 'static_library', 200 'type': 'static_library',
194 'dependencies': [ 201 'dependencies': [
195 '../base/base.gyp:base', 202 '../base/base.gyp:base',
196 '../base/base.gyp:test_support_base', 203 '../base/base.gyp:test_support_base',
197 '../testing/gtest.gyp:gtest', 204 '../testing/gtest.gyp:gtest',
198 'mojo_system_impl2', 205 'mojo_system_impl2',
199 ], 206 ],
200 'sources': [ 207 'sources': [
208 'edk/test/mojo_test_base.cc',
209 'edk/test/mojo_test_base.h',
201 'edk/test/multiprocess_test_helper.cc', 210 'edk/test/multiprocess_test_helper.cc',
202 'edk/test/multiprocess_test_helper.h', 211 'edk/test/multiprocess_test_helper.h',
203 'edk/test/scoped_ipc_support.cc', 212 'edk/test/scoped_ipc_support.cc',
204 'edk/test/scoped_ipc_support.h', 213 'edk/test/scoped_ipc_support.h',
205 'edk/test/test_utils.h', 214 'edk/test/test_utils.h',
206 'edk/test/test_utils_posix.cc', 215 'edk/test/test_utils_posix.cc',
207 'edk/test/test_utils_win.cc', 216 'edk/test/test_utils_win.cc',
208 ], 217 ],
209 'conditions': [ 218 'conditions': [
210 ['OS=="ios"', { 219 ['OS=="ios"', {
(...skipping 15 matching lines...) Expand all
226 '../third_party/mojo/mojo_public.gyp:mojo_public_test_support', 235 '../third_party/mojo/mojo_public.gyp:mojo_public_test_support',
227 'mojo_system_impl2', 236 'mojo_system_impl2',
228 'mojo_test_support_impl2', 237 'mojo_test_support_impl2',
229 ], 238 ],
230 'sources': [ 239 'sources': [
231 'edk/test/run_all_unittests.cc', 240 'edk/test/run_all_unittests.cc',
232 ], 241 ],
233 }, 242 },
234 ], 243 ],
235 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698