| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../third_party/mojo/mojo_variables.gypi', | 7 'mojo_variables.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'mojo_edk_tests', | 11 'target_name': 'mojo_edk_tests', |
| 12 'type': 'none', | 12 'type': 'none', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 # NOTE: If adding a new dependency here, please consider whether it | 14 # NOTE: If adding a new dependency here, please consider whether it |
| 15 # should also be added to the list of Mojo-related dependencies of | 15 # should also be added to the list of Mojo-related dependencies of |
| 16 # build/all.gyp:All on iOS, as All cannot depend on the mojo_base | 16 # build/all.gyp:All on iOS, as All cannot depend on the mojo_base |
| 17 # target on iOS due to the presence of the js targets, which cause v8 | 17 # target on iOS due to the presence of the js targets, which cause v8 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'edk/system/test_utils.cc', | 91 'edk/system/test_utils.cc', |
| 92 'edk/system/test_utils.h', | 92 'edk/system/test_utils.h', |
| 93 ], | 93 ], |
| 94 }, | 94 }, |
| 95 { | 95 { |
| 96 # GN version: //mojo/edk/js/test:js_unittests | 96 # GN version: //mojo/edk/js/test:js_unittests |
| 97 'target_name': 'mojo_js_unittests2', | 97 'target_name': 'mojo_js_unittests2', |
| 98 'type': 'executable', | 98 'type': 'executable', |
| 99 'dependencies': [ | 99 'dependencies': [ |
| 100 '../gin/gin.gyp:gin_test', | 100 '../gin/gin.gyp:gin_test', |
| 101 '../third_party/mojo/mojo_public.gyp:mojo_environment_standalone', | 101 '../mojo/mojo_public.gyp:mojo_environment_standalone', |
| 102 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces', | 102 '../mojo/mojo_public.gyp:mojo_public_test_interfaces', |
| 103 '../third_party/mojo/mojo_public.gyp:mojo_utility', | 103 '../mojo/mojo_public.gyp:mojo_utility', |
| 104 'mojo_edk.gyp:mojo_common_test_support2', | 104 'mojo_edk.gyp:mojo_common_test_support2', |
| 105 'mojo_edk.gyp:mojo_run_all_unittests2', | 105 'mojo_edk.gyp:mojo_run_all_unittests2', |
| 106 'mojo_edk.gyp:mojo_js_lib2', | 106 'mojo_edk.gyp:mojo_js_lib2', |
| 107 ], | 107 ], |
| 108 'sources': [ | 108 'sources': [ |
| 109 'edk/js/handle_unittest.cc', | 109 'edk/js/handle_unittest.cc', |
| 110 'edk/js/test/run_js_tests.cc', | 110 'edk/js/test/run_js_tests.cc', |
| 111 ], | 111 ], |
| 112 }, | 112 }, |
| 113 { | 113 { |
| 114 # GN version: //mojo/edk/js/test:js_integration_tests | 114 # GN version: //mojo/edk/js/test:js_integration_tests |
| 115 'target_name': 'mojo_js_integration_tests2', | 115 'target_name': 'mojo_js_integration_tests2', |
| 116 'type': 'executable', | 116 'type': 'executable', |
| 117 'dependencies': [ | 117 'dependencies': [ |
| 118 '../base/base.gyp:base', | 118 '../base/base.gyp:base', |
| 119 '../gin/gin.gyp:gin_test', | 119 '../gin/gin.gyp:gin_test', |
| 120 '../third_party/mojo/mojo_public.gyp:mojo_environment_standalone', | 120 '../mojo/mojo_public.gyp:mojo_environment_standalone', |
| 121 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces', | 121 '../mojo/mojo_public.gyp:mojo_public_test_interfaces', |
| 122 '../third_party/mojo/mojo_public.gyp:mojo_utility', | 122 '../mojo/mojo_public.gyp:mojo_utility', |
| 123 'mojo_edk.gyp:mojo_js_lib2', | 123 'mojo_edk.gyp:mojo_js_lib2', |
| 124 'mojo_edk.gyp:mojo_run_all_unittests2', | 124 'mojo_edk.gyp:mojo_run_all_unittests2', |
| 125 'mojo_js_to_cpp_bindings', | 125 'mojo_js_to_cpp_bindings', |
| 126 ], | 126 ], |
| 127 'sources': [ | 127 'sources': [ |
| 128 'edk/js/test/run_js_integration_tests.cc', | 128 'edk/js/test/run_js_integration_tests.cc', |
| 129 'edk/js/tests/js_to_cpp_tests.cc', | 129 'edk/js/tests/js_to_cpp_tests.cc', |
| 130 ], | 130 ], |
| 131 }, | 131 }, |
| 132 ], | 132 ], |
| 133 } | 133 } |
| OLD | NEW |