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_variables.gypi', | 10 '../mojo_variables.gypi', |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
389 ], | 389 ], |
390 'sources': [ | 390 'sources': [ |
391 # Sources list duplicated in GN build. | 391 # Sources list duplicated in GN build. |
392 'js/core.cc', | 392 'js/core.cc', |
393 'js/core.h', | 393 'js/core.h', |
394 'js/drain_data.cc', | 394 'js/drain_data.cc', |
395 'js/drain_data.h', | 395 'js/drain_data.h', |
396 'js/handle.cc', | 396 'js/handle.cc', |
397 'js/handle.h', | 397 'js/handle.h', |
398 'js/handle_close_observer.h', | 398 'js/handle_close_observer.h', |
| 399 'js/threading.cc', |
| 400 'js/threading.h', |
399 'js/support.cc', | 401 'js/support.cc', |
400 'js/support.h', | 402 'js/support.h', |
401 'js/waiting_callback.cc', | 403 'js/waiting_callback.cc', |
402 'js/waiting_callback.h', | 404 'js/waiting_callback.h', |
403 ], | 405 ], |
404 }, | 406 }, |
405 { | 407 { |
406 # GN version: //mojo/edk/js:js_unittests | 408 # GN version: //mojo/edk/js:js_unittests |
407 'target_name': 'mojo_js_unittests', | 409 'target_name': 'mojo_js_unittests', |
408 'type': 'executable', | 410 'type': 'executable', |
409 'dependencies': [ | 411 'dependencies': [ |
410 '../../gin/gin.gyp:gin_test', | 412 '../../gin/gin.gyp:gin_test', |
411 'mojo_common_test_support', | 413 'mojo_common_test_support', |
412 'mojo_run_all_unittests', | 414 'mojo_run_all_unittests', |
413 'mojo_js_lib', | 415 'mojo_js_lib', |
414 '../public/mojo_public.gyp:mojo_environment_standalone', | 416 '../public/mojo_public.gyp:mojo_environment_chromium', |
415 '../public/mojo_public.gyp:mojo_public_test_interfaces', | 417 '../public/mojo_public.gyp:mojo_public_test_interfaces', |
416 '../public/mojo_public.gyp:mojo_utility', | 418 '../public/mojo_public.gyp:mojo_utility', |
417 ], | 419 ], |
418 'sources': [ | 420 'sources': [ |
419 'js/handle_unittest.cc', | 421 'js/handle_unittest.cc', |
420 'js/tests/run_js_tests.cc', | 422 'js/tests/run_js_tests.cc', |
421 ], | 423 ], |
422 }, | 424 }, |
423 { | 425 { |
424 # GN version: //mojo/common/test:test_support_impl | 426 # GN version: //mojo/common/test:test_support_impl |
(...skipping 27 matching lines...) Expand all Loading... |
452 'conditions': [ | 454 'conditions': [ |
453 ['OS=="ios"', { | 455 ['OS=="ios"', { |
454 'sources!': [ | 456 'sources!': [ |
455 'test/multiprocess_test_helper.cc', | 457 'test/multiprocess_test_helper.cc', |
456 ], | 458 ], |
457 }], | 459 }], |
458 ], | 460 ], |
459 }, | 461 }, |
460 ], | 462 ], |
461 } | 463 } |
OLD | NEW |