| 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 a valid python dictionary. | 2 # This must be a valid python dictionary. |
| 3 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. | 3 # TODO(vtl): Add a way of specifying data dependencies instead of cacheable. |
| 4 [ | 4 [ |
| 5 # System tests: | 5 # System tests: |
| 6 { | 6 { |
| 7 "test": "mojo_system_unittests", | 7 "test": "mojo_system_unittests", |
| 8 "run_on_android": True, | 8 "run_on_android": True, |
| 9 }, | 9 }, |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 { | 41 { |
| 42 "test": "mojo_surfaces_lib_unittests", | 42 "test": "mojo_surfaces_lib_unittests", |
| 43 }, | 43 }, |
| 44 { | 44 { |
| 45 "test": "view_manager_service_unittests", | 45 "test": "view_manager_service_unittests", |
| 46 }, | 46 }, |
| 47 { | 47 { |
| 48 "test": "window_manager_unittests", | 48 "test": "window_manager_unittests", |
| 49 }, | 49 }, |
| 50 | 50 |
| 51 # Tests for components we depend on: |
| 52 { |
| 53 "test": "gfx_unittests", |
| 54 }, |
| 55 |
| 51 # JavaScript tests: | 56 # JavaScript tests: |
| 52 { | 57 { |
| 53 "test": "js_unittests", | 58 "test": "js_unittests", |
| 54 "cacheable": False, | 59 "cacheable": False, |
| 55 }, | 60 }, |
| 56 { | 61 { |
| 57 "test": "js_integration_tests", | 62 "test": "js_integration_tests", |
| 58 "cacheable": False, | 63 "cacheable": False, |
| 59 }, | 64 }, |
| 60 { | 65 { |
| 61 "test": "js_services_unittests", | 66 "test": "js_services_unittests", |
| 62 "cacheable": False, | 67 "cacheable": False, |
| 63 }, | 68 }, |
| 64 | 69 |
| 65 # Shell integration tests: | 70 # Shell integration tests: |
| 66 { | 71 { |
| 67 "test": "mojo_shell_tests", | 72 "test": "mojo_shell_tests", |
| 68 "cacheable": False, | 73 "cacheable": False, |
| 69 "run_on_android": True, | 74 "run_on_android": True, |
| 70 }, | 75 }, |
| 71 ] | 76 ] |
| OLD | NEW |