| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 '../testing/gtest.gyp:gtest', | 66 '../testing/gtest.gyp:gtest', |
| 67 'mojo_system_impl', | 67 'mojo_system_impl', |
| 68 'mojo_test_support', | 68 'mojo_test_support', |
| 69 'mojo_test_support_impl', | 69 'mojo_test_support_impl', |
| 70 ], | 70 ], |
| 71 'sources': [ | 71 'sources': [ |
| 72 'common/test/run_all_unittests.cc', | 72 'common/test/run_all_unittests.cc', |
| 73 ], | 73 ], |
| 74 }, | 74 }, |
| 75 { | 75 { |
| 76 # GN version: //mojo/common/test:run_all_perftests |
| 76 'target_name': 'mojo_run_all_perftests', | 77 'target_name': 'mojo_run_all_perftests', |
| 77 'type': 'static_library', | 78 'type': 'static_library', |
| 78 'dependencies': [ | 79 'dependencies': [ |
| 79 '../base/base.gyp:test_support_base', | 80 '../base/base.gyp:test_support_base', |
| 80 'mojo_system_impl', | 81 'mojo_system_impl', |
| 81 'mojo_test_support', | 82 'mojo_test_support', |
| 82 'mojo_test_support_impl', | 83 'mojo_test_support_impl', |
| 83 ], | 84 ], |
| 84 'sources': [ | 85 'sources': [ |
| 85 'common/test/run_all_perftests.cc', | 86 'common/test/run_all_perftests.cc', |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 'bindings/js/handle.cc', | 508 'bindings/js/handle.cc', |
| 508 'bindings/js/handle.h', | 509 'bindings/js/handle.h', |
| 509 'bindings/js/handle_close_observer.h', | 510 'bindings/js/handle_close_observer.h', |
| 510 'bindings/js/support.cc', | 511 'bindings/js/support.cc', |
| 511 'bindings/js/support.h', | 512 'bindings/js/support.h', |
| 512 'bindings/js/waiting_callback.cc', | 513 'bindings/js/waiting_callback.cc', |
| 513 'bindings/js/waiting_callback.h', | 514 'bindings/js/waiting_callback.h', |
| 514 ], | 515 ], |
| 515 }, | 516 }, |
| 516 { | 517 { |
| 518 # GN version: //mojo/tools:message_generator |
| 517 'target_name': 'mojo_message_generator', | 519 'target_name': 'mojo_message_generator', |
| 518 'type': 'executable', | 520 'type': 'executable', |
| 519 'dependencies': [ | 521 'dependencies': [ |
| 520 '../base/base.gyp:base', | 522 '../base/base.gyp:base', |
| 521 '../testing/gtest.gyp:gtest', | 523 '../testing/gtest.gyp:gtest', |
| 522 'mojo_common_lib', | 524 'mojo_common_lib', |
| 523 'mojo_cpp_bindings', | 525 'mojo_cpp_bindings', |
| 524 'mojo_environment_chromium', | 526 'mojo_environment_chromium', |
| 525 'mojo_system_impl', | 527 'mojo_system_impl', |
| 526 ], | 528 ], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 'mojo_js_unittests.isolate', | 650 'mojo_js_unittests.isolate', |
| 649 ], | 651 ], |
| 650 'sources': [ | 652 'sources': [ |
| 651 'mojo_js_unittests.isolate', | 653 'mojo_js_unittests.isolate', |
| 652 ], | 654 ], |
| 653 }, | 655 }, |
| 654 ], | 656 ], |
| 655 }], | 657 }], |
| 656 ] | 658 ] |
| 657 } | 659 } |
| OLD | NEW |