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', |
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
219 'system/run_all_unittests.cc', | 219 'system/run_all_unittests.cc', |
220 'system/shared_buffer_dispatcher_unittest.cc', | 220 'system/shared_buffer_dispatcher_unittest.cc', |
221 'system/simple_dispatcher_unittest.cc', | 221 'system/simple_dispatcher_unittest.cc', |
222 'system/test_utils.cc', | 222 'system/test_utils.cc', |
223 'system/test_utils.h', | 223 'system/test_utils.h', |
224 'system/waiter_list_unittest.cc', | 224 'system/waiter_list_unittest.cc', |
225 'system/waiter_test_utils.cc', | 225 'system/waiter_test_utils.cc', |
226 'system/waiter_test_utils.h', | 226 'system/waiter_test_utils.h', |
227 'system/waiter_unittest.cc', | 227 'system/waiter_unittest.cc', |
228 ], | 228 ], |
229 'conditions': [ | |
230 ['OS=="ios"', { | |
231 'sources!': [ | |
232 'embedder/embedder_unittest.cc', | |
qsr
2014/09/04 13:35:45
You might want to cut this test in 2, one for in p
blundell
2014/09/04 15:02:51
I'll look at this but would prefer to save it for
| |
233 'system/multiprocess_message_pipe_unittest.cc', | |
234 ], | |
235 }], | |
236 ], | |
229 }, | 237 }, |
230 { | 238 { |
231 # GN version: //mojo/system:mojo_message_pipe_perftests | 239 # GN version: //mojo/system:mojo_message_pipe_perftests |
232 'target_name': 'mojo_message_pipe_perftests', | 240 'target_name': 'mojo_message_pipe_perftests', |
233 'type': 'executable', | 241 'type': 'executable', |
234 'dependencies': [ | 242 'dependencies': [ |
235 '../base/base.gyp:base', | 243 '../base/base.gyp:base', |
236 '../base/base.gyp:test_support_base', | 244 '../base/base.gyp:test_support_base', |
237 '../base/base.gyp:test_support_perf', | 245 '../base/base.gyp:test_support_perf', |
238 '../testing/gtest.gyp:gtest', | 246 '../testing/gtest.gyp:gtest', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
300 '../testing/gtest.gyp:gtest', | 308 '../testing/gtest.gyp:gtest', |
301 'mojo_system_impl', | 309 'mojo_system_impl', |
302 ], | 310 ], |
303 'sources': [ | 311 'sources': [ |
304 'common/test/multiprocess_test_helper.cc', | 312 'common/test/multiprocess_test_helper.cc', |
305 'common/test/multiprocess_test_helper.h', | 313 'common/test/multiprocess_test_helper.h', |
306 'common/test/test_utils.h', | 314 'common/test/test_utils.h', |
307 'common/test/test_utils_posix.cc', | 315 'common/test/test_utils_posix.cc', |
308 'common/test/test_utils_win.cc', | 316 'common/test/test_utils_win.cc', |
309 ], | 317 ], |
318 'conditions': [ | |
319 ['OS=="ios"', { | |
320 'sources!': [ | |
321 'common/test/multiprocess_test_helper.cc', | |
322 ], | |
323 }], | |
324 ], | |
310 }, | 325 }, |
311 { | 326 { |
312 # GN version: //mojo/common:mojo_common_unittests | 327 # GN version: //mojo/common:mojo_common_unittests |
313 'target_name': 'mojo_common_unittests', | 328 'target_name': 'mojo_common_unittests', |
314 'type': 'executable', | 329 'type': 'executable', |
315 'dependencies': [ | 330 'dependencies': [ |
316 '../base/base.gyp:base', | 331 '../base/base.gyp:base', |
317 '../base/base.gyp:base_message_loop_tests', | 332 '../base/base.gyp:base_message_loop_tests', |
318 '../testing/gtest.gyp:gtest', | 333 '../testing/gtest.gyp:gtest', |
319 '../url/url.gyp:url_lib', | 334 '../url/url.gyp:url_lib', |
320 'mojo_cpp_bindings', | 335 'mojo_cpp_bindings', |
321 'mojo_environment_chromium', | 336 'mojo_environment_chromium', |
322 'mojo_common_lib', | 337 'mojo_common_lib', |
323 'mojo_common_test_support', | 338 'mojo_common_test_support', |
324 'mojo_public_test_utils', | 339 'mojo_public_test_utils', |
325 'mojo_run_all_unittests', | 340 'mojo_run_all_unittests', |
326 ], | 341 ], |
327 'sources': [ | 342 'sources': [ |
328 'common/common_type_converters_unittest.cc', | 343 'common/common_type_converters_unittest.cc', |
329 'common/handle_watcher_unittest.cc', | 344 'common/handle_watcher_unittest.cc', |
330 'common/message_pump_mojo_unittest.cc', | 345 'common/message_pump_mojo_unittest.cc', |
331 'common/test/multiprocess_test_helper_unittest.cc', | 346 'common/test/multiprocess_test_helper_unittest.cc', |
332 ], | 347 ], |
348 'conditions': [ | |
349 ['OS=="ios"', { | |
350 'sources!': [ | |
351 'common/test/multiprocess_test_helper_unittest.cc', | |
352 ], | |
353 }], | |
354 ], | |
333 }, | 355 }, |
334 { | 356 { |
335 # GN version: //mojo/environment:chromium | 357 # GN version: //mojo/environment:chromium |
336 'target_name': 'mojo_environment_chromium', | 358 'target_name': 'mojo_environment_chromium', |
337 'type': 'static_library', | 359 'type': 'static_library', |
338 'dependencies': [ | 360 'dependencies': [ |
339 'mojo_environment_chromium_impl', | 361 'mojo_environment_chromium_impl', |
340 ], | 362 ], |
341 'sources': [ | 363 'sources': [ |
342 'environment/environment.cc', | 364 'environment/environment.cc', |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
618 'mojo_js_unittests.isolate', | 640 'mojo_js_unittests.isolate', |
619 ], | 641 ], |
620 'sources': [ | 642 'sources': [ |
621 'mojo_js_unittests.isolate', | 643 'mojo_js_unittests.isolate', |
622 ], | 644 ], |
623 }, | 645 }, |
624 ], | 646 ], |
625 }], | 647 }], |
626 ] | 648 ] |
627 } | 649 } |
OLD | NEW |