OLD | NEW |
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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_public.gypi', | 10 'mojo_public.gypi', |
11 'mojo_public_tests.gypi', | 11 'mojo_public_tests.gypi', |
12 'mojo_variables.gypi', | 12 'mojo_variables.gypi', |
13 ], | 13 ], |
14 'targets': [ | 14 'targets': [ |
15 { | 15 { |
16 'target_name': 'mojo_base', | 16 'target_name': 'mojo_base', |
17 'type': 'none', | 17 'type': 'none', |
18 'dependencies': [ | 18 'dependencies': [ |
19 'mojo_common_lib', | 19 'mojo_common_lib', |
20 'mojo_common_unittests', | 20 'mojo_common_unittests', |
21 'mojo_cpp_bindings', | 21 'mojo_cpp_bindings', |
22 'mojo_js_bindings', | 22 'mojo_js_bindings', |
23 'mojo_js_unittests', | 23 'mojo_js_unittests', |
24 'mojo_message_generator', | 24 'mojo_message_generator', |
| 25 'mojo_message_pipe_perftests', |
25 'mojo_public_application_unittests', | 26 'mojo_public_application_unittests', |
26 'mojo_public_test_utils', | 27 'mojo_public_test_utils', |
27 'mojo_public_bindings_unittests', | 28 'mojo_public_bindings_unittests', |
28 'mojo_public_environment_unittests', | 29 'mojo_public_environment_unittests', |
29 'mojo_public_system_perftests', | 30 'mojo_public_system_perftests', |
30 'mojo_public_system_unittests', | 31 'mojo_public_system_unittests', |
31 'mojo_public_utility_unittests', | 32 'mojo_public_utility_unittests', |
32 'mojo_system', | 33 'mojo_system', |
33 'mojo_system_impl', | 34 'mojo_system_impl', |
34 'mojo_system_unittests', | 35 'mojo_system_unittests', |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 'embedder/simple_platform_shared_buffer_unittest.cc', | 201 'embedder/simple_platform_shared_buffer_unittest.cc', |
201 'system/channel_unittest.cc', | 202 'system/channel_unittest.cc', |
202 'system/core_unittest.cc', | 203 'system/core_unittest.cc', |
203 'system/core_test_base.cc', | 204 'system/core_test_base.cc', |
204 'system/core_test_base.h', | 205 'system/core_test_base.h', |
205 'system/data_pipe_unittest.cc', | 206 'system/data_pipe_unittest.cc', |
206 'system/dispatcher_unittest.cc', | 207 'system/dispatcher_unittest.cc', |
207 'system/local_data_pipe_unittest.cc', | 208 'system/local_data_pipe_unittest.cc', |
208 'system/memory_unittest.cc', | 209 'system/memory_unittest.cc', |
209 'system/message_pipe_dispatcher_unittest.cc', | 210 'system/message_pipe_dispatcher_unittest.cc', |
| 211 'system/message_pipe_test_utils.h', |
| 212 'system/message_pipe_test_utils.cc', |
210 'system/message_pipe_unittest.cc', | 213 'system/message_pipe_unittest.cc', |
211 'system/multiprocess_message_pipe_unittest.cc', | 214 'system/multiprocess_message_pipe_unittest.cc', |
212 'system/options_validation_unittest.cc', | 215 'system/options_validation_unittest.cc', |
213 'system/platform_handle_dispatcher_unittest.cc', | 216 'system/platform_handle_dispatcher_unittest.cc', |
214 'system/raw_channel_unittest.cc', | 217 'system/raw_channel_unittest.cc', |
215 'system/remote_message_pipe_unittest.cc', | 218 'system/remote_message_pipe_unittest.cc', |
216 'system/run_all_unittests.cc', | 219 'system/run_all_unittests.cc', |
217 'system/shared_buffer_dispatcher_unittest.cc', | 220 'system/shared_buffer_dispatcher_unittest.cc', |
218 'system/simple_dispatcher_unittest.cc', | 221 'system/simple_dispatcher_unittest.cc', |
219 'system/test_utils.cc', | 222 'system/test_utils.cc', |
220 'system/test_utils.h', | 223 'system/test_utils.h', |
221 'system/waiter_list_unittest.cc', | 224 'system/waiter_list_unittest.cc', |
222 'system/waiter_test_utils.cc', | 225 'system/waiter_test_utils.cc', |
223 'system/waiter_test_utils.h', | 226 'system/waiter_test_utils.h', |
224 'system/waiter_unittest.cc', | 227 'system/waiter_unittest.cc', |
225 ], | 228 ], |
226 }, | 229 }, |
227 { | 230 { |
| 231 # GN version: //mojo/system:mojo_message_pipe_perftests |
| 232 'target_name': 'mojo_message_pipe_perftests', |
| 233 'type': 'executable', |
| 234 'dependencies': [ |
| 235 '../base/base.gyp:base', |
| 236 '../base/base.gyp:test_support_base', |
| 237 '../base/base.gyp:test_support_perf', |
| 238 '../testing/gtest.gyp:gtest', |
| 239 'mojo_common_test_support', |
| 240 'mojo_environment_chromium', |
| 241 'mojo_system_impl', |
| 242 ], |
| 243 'sources': [ |
| 244 'system/message_pipe_perftest.cc', |
| 245 'system/message_pipe_test_utils.h', |
| 246 'system/message_pipe_test_utils.cc', |
| 247 'system/test_utils.cc', |
| 248 'system/test_utils.h', |
| 249 ], |
| 250 }, |
| 251 { |
228 # GN version: //mojo/common/test:test_support_impl | 252 # GN version: //mojo/common/test:test_support_impl |
229 'target_name': 'mojo_test_support_impl', | 253 'target_name': 'mojo_test_support_impl', |
230 'type': 'static_library', | 254 'type': 'static_library', |
231 'dependencies': [ | 255 'dependencies': [ |
232 '../base/base.gyp:base', | 256 '../base/base.gyp:base', |
233 ], | 257 ], |
234 'sources': [ | 258 'sources': [ |
235 'common/test/test_support_impl.cc', | 259 'common/test/test_support_impl.cc', |
236 'common/test/test_support_impl.h', | 260 'common/test/test_support_impl.h', |
237 ], | 261 ], |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 'mojo_js_unittests.isolate', | 613 'mojo_js_unittests.isolate', |
590 ], | 614 ], |
591 'sources': [ | 615 'sources': [ |
592 'mojo_js_unittests.isolate', | 616 'mojo_js_unittests.isolate', |
593 ], | 617 ], |
594 }, | 618 }, |
595 ], | 619 ], |
596 }], | 620 }], |
597 ] | 621 ] |
598 } | 622 } |
OLD | NEW |