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 '../third_party/mojo/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 |
18 # to be built. | 18 # to be built. |
19 'mojo_message_pipe_perftests2', | 19 'mojo_message_pipe_perftests2', |
20 'mojo_system_unittests2', | 20 'mojo_system_unittests2', |
21 'mojo_js_unittests2', | 21 'mojo_js_unittests', |
22 'mojo_js_integration_tests2', | 22 'mojo_js_integration_tests2', |
23 ], | 23 ], |
24 }, | 24 }, |
25 { | 25 { |
26 # GN version: //mojo/edk/system:mojo_system_unittests | 26 # GN version: //mojo/edk/system:mojo_system_unittests |
27 'target_name': 'mojo_system_unittests2', | 27 'target_name': 'mojo_system_unittests2', |
28 'type': 'executable', | 28 'type': 'executable', |
29 'dependencies': [ | 29 'dependencies': [ |
30 '../base/base.gyp:base', | 30 '../base/base.gyp:base', |
31 '../testing/gtest.gyp:gtest', | 31 '../testing/gtest.gyp:gtest', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'sources': [ | 87 'sources': [ |
88 'edk/system/message_pipe_perftest.cc', | 88 'edk/system/message_pipe_perftest.cc', |
89 'edk/system/message_pipe_test_utils.cc', | 89 'edk/system/message_pipe_test_utils.cc', |
90 'edk/system/message_pipe_test_utils.h', | 90 'edk/system/message_pipe_test_utils.h', |
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_unittests', |
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 '../third_party/mojo/mojo_public.gyp:mojo_environment_standalone', |
102 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces', | 102 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces', |
103 '../third_party/mojo/mojo_public.gyp:mojo_utility', | 103 '../third_party/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 ], |
(...skipping 16 matching lines...) Expand all Loading... |
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 |