| 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 # System tests: | 8 # System tests: |
| 9 { | 9 { |
| 10 "test": "mojo_system_unittests", | 10 "test": "mojo_system_unittests", |
| 11 }, | 11 }, |
| 12 | 12 |
| 13 # Public tests: | 13 # Public tests: |
| 14 { | 14 { |
| 15 "test": "mojo_public_bindings_unittests", | 15 "test": "mojo_public_bindings_unittests", |
| 16 "cacheable": False, | 16 "cacheable": False, |
| 17 }, | 17 }, |
| 18 { | 18 { |
| 19 "test": "mojo_public_environment_unittests", | 19 "test": "mojo_public_environment_unittests", |
| 20 }, | 20 }, |
| 21 { | 21 { |
| 22 "test": "mojo_public_system_unittests", | 22 "test": "mojo_public_system_unittests", |
| 23 }, | 23 }, |
| 24 { | 24 { |
| 25 "test": "mojo_public_utility_unittests", | 25 "test": "mojo_public_utility_unittests", |
| 26 }, | 26 }, |
| 27 | 27 |
| 28 # Non-system, non-public tests: | 28 # Non-system, non-public tests: |
| 29 { | 29 { |
| 30 "test": "crypto_unittests", | |
| 31 }, | |
| 32 { | |
| 33 "test": "mojo_application_manager_unittests", | 30 "test": "mojo_application_manager_unittests", |
| 34 }, | 31 }, |
| 35 { | 32 { |
| 36 "test": "mojo_common_unittests", | 33 "test": "mojo_common_unittests", |
| 37 }, | 34 }, |
| 38 { | 35 { |
| 39 "test": "external_application_unittests", | 36 "test": "external_application_unittests", |
| 40 }, | 37 }, |
| 41 { | 38 { |
| 42 "test": "mojo_view_manager_lib_unittests", | 39 "test": "mojo_view_manager_lib_unittests", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 ] | 81 ] |
| 85 | 82 |
| 86 # TODO: get dart unittests working with android. | 83 # TODO: get dart unittests working with android. |
| 87 if config.target_os != config.OS_ANDROID: | 84 if config.target_os != config.OS_ANDROID: |
| 88 tests += [ | 85 tests += [ |
| 89 { | 86 { |
| 90 "test": "dart_unittests", | 87 "test": "dart_unittests", |
| 91 "cacheable": False, | 88 "cacheable": False, |
| 92 }, | 89 }, |
| 93 ] | 90 ] |
| OLD | NEW |