| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 '../testing/gtest.gyp:gtest', | 61 '../testing/gtest.gyp:gtest', |
| 62 'mojo_system_impl', | 62 'mojo_system_impl', |
| 63 'mojo_test_support', | 63 'mojo_test_support', |
| 64 'mojo_test_support_impl', | 64 'mojo_test_support_impl', |
| 65 ], | 65 ], |
| 66 'sources': [ | 66 'sources': [ |
| 67 'common/test/run_all_unittests.cc', | 67 'common/test/run_all_unittests.cc', |
| 68 ], | 68 ], |
| 69 }, | 69 }, |
| 70 { | 70 { |
| 71 # GN version: //mojo/common/test:run_all_perftests |
| 71 'target_name': 'mojo_run_all_perftests', | 72 'target_name': 'mojo_run_all_perftests', |
| 72 'type': 'static_library', | 73 'type': 'static_library', |
| 73 'dependencies': [ | 74 'dependencies': [ |
| 74 '../base/base.gyp:test_support_base', | 75 '../base/base.gyp:test_support_base', |
| 75 'mojo_system_impl', | 76 'mojo_system_impl', |
| 76 'mojo_test_support', | 77 'mojo_test_support', |
| 77 'mojo_test_support_impl', | 78 'mojo_test_support_impl', |
| 78 ], | 79 ], |
| 79 'sources': [ | 80 'sources': [ |
| 80 'common/test/run_all_perftests.cc', | 81 'common/test/run_all_perftests.cc', |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 'bindings/js/core.h', | 480 'bindings/js/core.h', |
| 480 'bindings/js/handle.cc', | 481 'bindings/js/handle.cc', |
| 481 'bindings/js/handle.h', | 482 'bindings/js/handle.h', |
| 482 'bindings/js/support.cc', | 483 'bindings/js/support.cc', |
| 483 'bindings/js/support.h', | 484 'bindings/js/support.h', |
| 484 'bindings/js/waiting_callback.cc', | 485 'bindings/js/waiting_callback.cc', |
| 485 'bindings/js/waiting_callback.h', | 486 'bindings/js/waiting_callback.h', |
| 486 ], | 487 ], |
| 487 }, | 488 }, |
| 488 { | 489 { |
| 490 # GN version: //mojo/tools:message_generator |
| 489 'target_name': 'mojo_message_generator', | 491 'target_name': 'mojo_message_generator', |
| 490 'type': 'executable', | 492 'type': 'executable', |
| 491 'dependencies': [ | 493 'dependencies': [ |
| 492 '../base/base.gyp:base', | 494 '../base/base.gyp:base', |
| 493 '../testing/gtest.gyp:gtest', | 495 '../testing/gtest.gyp:gtest', |
| 494 'mojo_common_lib', | 496 'mojo_common_lib', |
| 495 'mojo_cpp_bindings', | 497 'mojo_cpp_bindings', |
| 496 'mojo_environment_chromium', | 498 'mojo_environment_chromium', |
| 497 'mojo_system_impl', | 499 'mojo_system_impl', |
| 498 ], | 500 ], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 'mojo_js_unittests.isolate', | 622 'mojo_js_unittests.isolate', |
| 621 ], | 623 ], |
| 622 'sources': [ | 624 'sources': [ |
| 623 'mojo_js_unittests.isolate', | 625 'mojo_js_unittests.isolate', |
| 624 ], | 626 ], |
| 625 }, | 627 }, |
| 626 ], | 628 ], |
| 627 }], | 629 }], |
| 628 ] | 630 ] |
| 629 } | 631 } |
| OLD | NEW |