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 { | 5 { |
6 'includes': [ | 6 'includes': [ |
7 '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 |
18 # to be built. | 18 # to be built. |
19 'mojo_message_pipe_perftests', | 19 'mojo_message_pipe_perftests', |
20 'mojo_public_bindings_perftests', | |
21 'mojo_public_bindings_unittests', | 20 'mojo_public_bindings_unittests', |
22 'mojo_public_environment_unittests', | 21 'mojo_public_environment_unittests', |
23 'mojo_public_system_perftests', | 22 'mojo_public_system_perftests', |
24 'mojo_public_system_unittests', | 23 'mojo_public_system_unittests', |
25 'mojo_public_utility_unittests', | 24 'mojo_public_utility_unittests', |
26 'mojo_system_unittests', | 25 'mojo_system_unittests', |
27 'mojo_js_unittests', | 26 'mojo_js_unittests', |
28 'mojo_js_integration_tests', | 27 'mojo_js_integration_tests', |
29 ], | 28 ], |
30 }, | 29 }, |
(...skipping 15 matching lines...) Expand all Loading... |
46 'sources': [ | 45 'sources': [ |
47 'src/mojo/public/cpp/bindings/tests/array_unittest.cc', | 46 'src/mojo/public/cpp/bindings/tests/array_unittest.cc', |
48 'src/mojo/public/cpp/bindings/tests/bounds_checker_unittest.cc', | 47 'src/mojo/public/cpp/bindings/tests/bounds_checker_unittest.cc', |
49 'src/mojo/public/cpp/bindings/tests/buffer_unittest.cc', | 48 'src/mojo/public/cpp/bindings/tests/buffer_unittest.cc', |
50 'src/mojo/public/cpp/bindings/tests/connector_unittest.cc', | 49 'src/mojo/public/cpp/bindings/tests/connector_unittest.cc', |
51 'src/mojo/public/cpp/bindings/tests/container_test_util.cc', | 50 'src/mojo/public/cpp/bindings/tests/container_test_util.cc', |
52 'src/mojo/public/cpp/bindings/tests/equals_unittest.cc', | 51 'src/mojo/public/cpp/bindings/tests/equals_unittest.cc', |
53 'src/mojo/public/cpp/bindings/tests/handle_passing_unittest.cc', | 52 'src/mojo/public/cpp/bindings/tests/handle_passing_unittest.cc', |
54 'src/mojo/public/cpp/bindings/tests/interface_ptr_unittest.cc', | 53 'src/mojo/public/cpp/bindings/tests/interface_ptr_unittest.cc', |
55 'src/mojo/public/cpp/bindings/tests/map_unittest.cc', | 54 'src/mojo/public/cpp/bindings/tests/map_unittest.cc', |
56 'src/mojo/public/cpp/bindings/tests/message_queue.cc', | |
57 'src/mojo/public/cpp/bindings/tests/message_queue.h', | |
58 'src/mojo/public/cpp/bindings/tests/request_response_unittest.cc', | 55 'src/mojo/public/cpp/bindings/tests/request_response_unittest.cc', |
59 'src/mojo/public/cpp/bindings/tests/router_unittest.cc', | 56 'src/mojo/public/cpp/bindings/tests/router_unittest.cc', |
60 'src/mojo/public/cpp/bindings/tests/sample_service_unittest.cc', | 57 'src/mojo/public/cpp/bindings/tests/sample_service_unittest.cc', |
61 'src/mojo/public/cpp/bindings/tests/serialization_warning_unittest.cc', | 58 'src/mojo/public/cpp/bindings/tests/serialization_warning_unittest.cc', |
62 'src/mojo/public/cpp/bindings/tests/string_unittest.cc', | 59 'src/mojo/public/cpp/bindings/tests/string_unittest.cc', |
63 'src/mojo/public/cpp/bindings/tests/struct_unittest.cc', | 60 'src/mojo/public/cpp/bindings/tests/struct_unittest.cc', |
64 'src/mojo/public/cpp/bindings/tests/type_conversion_unittest.cc', | 61 'src/mojo/public/cpp/bindings/tests/type_conversion_unittest.cc', |
65 'src/mojo/public/cpp/bindings/tests/validation_unittest.cc', | 62 'src/mojo/public/cpp/bindings/tests/validation_unittest.cc', |
66 ], | 63 ], |
67 }, | 64 }, |
68 { | 65 { |
69 # GN version: //mojo/edk/test:mojo_public_bindings_perftests | |
70 'target_name': 'mojo_public_bindings_perftests', | |
71 'type': 'executable', | |
72 'dependencies': [ | |
73 '../../testing/gtest.gyp:gtest', | |
74 'mojo_edk.gyp:mojo_run_all_unittests', | |
75 'mojo_public.gyp:mojo_cpp_bindings', | |
76 'mojo_public.gyp:mojo_environment_standalone', | |
77 'mojo_public.gyp:mojo_public_bindings_test_utils', | |
78 'mojo_public.gyp:mojo_public_test_interfaces', | |
79 'mojo_public.gyp:mojo_public_test_utils', | |
80 'mojo_public.gyp:mojo_utility', | |
81 ], | |
82 'sources': [ | |
83 'src/mojo/public/cpp/bindings/tests/bindings_perftest.cc', | |
84 ], | |
85 }, | |
86 { | |
87 # GN version: //mojo/edk/test:mojo_public_environment_unittests | 66 # GN version: //mojo/edk/test:mojo_public_environment_unittests |
88 'target_name': 'mojo_public_environment_unittests', | 67 'target_name': 'mojo_public_environment_unittests', |
89 'type': 'executable', | 68 'type': 'executable', |
90 'dependencies': [ | 69 'dependencies': [ |
91 '../../testing/gtest.gyp:gtest', | 70 '../../testing/gtest.gyp:gtest', |
92 'mojo_edk.gyp:mojo_run_all_unittests', | 71 'mojo_edk.gyp:mojo_run_all_unittests', |
93 'mojo_public.gyp:mojo_environment_standalone', | 72 'mojo_public.gyp:mojo_environment_standalone', |
94 'mojo_public.gyp:mojo_public_test_utils', | 73 'mojo_public.gyp:mojo_public_test_utils', |
95 'mojo_public.gyp:mojo_utility', | 74 'mojo_public.gyp:mojo_utility', |
96 ], | 75 ], |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 'src/mojo/edk/system/ipc_support_unittest.cc', | 168 'src/mojo/edk/system/ipc_support_unittest.cc', |
190 'src/mojo/edk/system/memory_unittest.cc', | 169 'src/mojo/edk/system/memory_unittest.cc', |
191 'src/mojo/edk/system/message_in_transit_queue_unittest.cc', | 170 'src/mojo/edk/system/message_in_transit_queue_unittest.cc', |
192 'src/mojo/edk/system/message_in_transit_test_utils.cc', | 171 'src/mojo/edk/system/message_in_transit_test_utils.cc', |
193 'src/mojo/edk/system/message_in_transit_test_utils.h', | 172 'src/mojo/edk/system/message_in_transit_test_utils.h', |
194 'src/mojo/edk/system/message_pipe_dispatcher_unittest.cc', | 173 'src/mojo/edk/system/message_pipe_dispatcher_unittest.cc', |
195 'src/mojo/edk/system/message_pipe_test_utils.cc', | 174 'src/mojo/edk/system/message_pipe_test_utils.cc', |
196 'src/mojo/edk/system/message_pipe_test_utils.h', | 175 'src/mojo/edk/system/message_pipe_test_utils.h', |
197 'src/mojo/edk/system/message_pipe_unittest.cc', | 176 'src/mojo/edk/system/message_pipe_unittest.cc', |
198 'src/mojo/edk/system/multiprocess_message_pipe_unittest.cc', | 177 'src/mojo/edk/system/multiprocess_message_pipe_unittest.cc', |
199 'src/mojo/edk/system/mutex_unittest.cc', | |
200 'src/mojo/edk/system/options_validation_unittest.cc', | 178 'src/mojo/edk/system/options_validation_unittest.cc', |
201 'src/mojo/edk/system/platform_handle_dispatcher_unittest.cc', | 179 'src/mojo/edk/system/platform_handle_dispatcher_unittest.cc', |
202 'src/mojo/edk/system/raw_channel_unittest.cc', | 180 'src/mojo/edk/system/raw_channel_unittest.cc', |
203 'src/mojo/edk/system/remote_data_pipe_impl_unittest.cc', | 181 'src/mojo/edk/system/remote_data_pipe_impl_unittest.cc', |
204 'src/mojo/edk/system/remote_message_pipe_unittest.cc', | 182 'src/mojo/edk/system/remote_message_pipe_unittest.cc', |
205 'src/mojo/edk/system/run_all_unittests.cc', | 183 'src/mojo/edk/system/run_all_unittests.cc', |
206 'src/mojo/edk/system/shared_buffer_dispatcher_unittest.cc', | 184 'src/mojo/edk/system/shared_buffer_dispatcher_unittest.cc', |
207 'src/mojo/edk/system/simple_dispatcher_unittest.cc', | 185 'src/mojo/edk/system/simple_dispatcher_unittest.cc', |
208 'src/mojo/edk/system/test_channel_endpoint_client.cc', | 186 'src/mojo/edk/system/test_channel_endpoint_client.cc', |
209 'src/mojo/edk/system/test_channel_endpoint_client.h', | 187 'src/mojo/edk/system/test_channel_endpoint_client.h', |
210 'src/mojo/edk/system/test_utils.cc', | 188 'src/mojo/edk/system/test_utils.cc', |
211 'src/mojo/edk/system/test_utils.h', | 189 'src/mojo/edk/system/test_utils.h', |
212 'src/mojo/edk/system/thread_annotations_unittest.cc', | |
213 'src/mojo/edk/system/unique_identifier_unittest.cc', | 190 'src/mojo/edk/system/unique_identifier_unittest.cc', |
214 'src/mojo/edk/system/waiter_test_utils.cc', | 191 'src/mojo/edk/system/waiter_test_utils.cc', |
215 'src/mojo/edk/system/waiter_test_utils.h', | 192 'src/mojo/edk/system/waiter_test_utils.h', |
216 'src/mojo/edk/system/waiter_unittest.cc', | 193 'src/mojo/edk/system/waiter_unittest.cc', |
217 'src/mojo/edk/test/multiprocess_test_helper_unittest.cc', | 194 'src/mojo/edk/test/multiprocess_test_helper_unittest.cc', |
218 ], | 195 ], |
219 'conditions': [ | 196 'conditions': [ |
220 ['OS=="ios"', { | 197 ['OS=="ios"', { |
221 'sources!': [ | 198 'sources!': [ |
222 'src/mojo/edk/embedder/embedder_unittest.cc', | 199 'src/mojo/edk/embedder/embedder_unittest.cc', |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 '../../build/isolate.gypi', | 298 '../../build/isolate.gypi', |
322 ], | 299 ], |
323 'sources': [ | 300 'sources': [ |
324 'mojo_public_environment_unittests.isolate', | 301 'mojo_public_environment_unittests.isolate', |
325 ], | 302 ], |
326 }, | 303 }, |
327 ], | 304 ], |
328 }], | 305 }], |
329 ], | 306 ], |
330 } | 307 } |
OLD | NEW |