| OLD | NEW |
| 1 # This file contains a list of Mojo gtest unit tests. | 1 # This file contains a list of Mojo gtest unit tests. |
| 2 # This must be valid python. It can use the |config| global that will be a | 2 # This must be valid python. It can use the |config| global that will be a |
| 3 # mopy.config.Config object and must set a |tests| global that will contain the | 3 # mopy.config.Config object and must set a |tests| global that will contain the |
| 4 # tests to run. | 4 # tests to run. |
| 5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. | 5 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
| 6 | 6 |
| 7 tests = [ | 7 tests = [ |
| 8 # EDK tests: | 8 # EDK tests: |
| 9 { | 9 { |
| 10 "test": "mojo_edk_embedder_unittests", | 10 "test": "mojo_edk_embedder_unittests", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 { | 41 { |
| 42 "test": "crypto_unittests", | 42 "test": "crypto_unittests", |
| 43 }, | 43 }, |
| 44 { | 44 { |
| 45 "test": "mojo_application_manager_unittests", | 45 "test": "mojo_application_manager_unittests", |
| 46 }, | 46 }, |
| 47 { | 47 { |
| 48 "test": "mojo_common_unittests", | 48 "test": "mojo_common_unittests", |
| 49 }, | 49 }, |
| 50 { | 50 { |
| 51 "test": "mojo_converters_unittests", |
| 52 }, |
| 53 { |
| 51 "test": "mojo_view_manager_lib_unittests", | 54 "test": "mojo_view_manager_lib_unittests", |
| 52 }, | 55 }, |
| 53 { | 56 { |
| 54 "test": "mojo_surfaces_lib_unittests", | 57 "test": "mojo_surfaces_lib_unittests", |
| 55 }, | 58 }, |
| 56 { | 59 { |
| 57 "test": "url_response_disk_cache_unittests", | 60 "test": "url_response_disk_cache_unittests", |
| 58 }, | 61 }, |
| 59 { | 62 { |
| 60 "test": "view_manager_service_unittests", | 63 "test": "view_manager_service_unittests", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "cacheable": False, | 109 "cacheable": False, |
| 107 }, | 110 }, |
| 108 ] | 111 ] |
| 109 | 112 |
| 110 if config.target_os == config.OS_LINUX: | 113 if config.target_os == config.OS_LINUX: |
| 111 tests += [ | 114 tests += [ |
| 112 { | 115 { |
| 113 "test": "sandbox_linux_unittests", | 116 "test": "sandbox_linux_unittests", |
| 114 }, | 117 }, |
| 115 ] | 118 ] |
| OLD | NEW |