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