Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: mojo/tools/data/unittests

Issue 1276073004: Offline By Default (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Add missing explicits. Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
(...skipping 27 matching lines...) Expand all
38 { 38 {
39 "test": "mojo_common_unittests", 39 "test": "mojo_common_unittests",
40 }, 40 },
41 { 41 {
42 "test": "mojo_view_manager_lib_unittests", 42 "test": "mojo_view_manager_lib_unittests",
43 }, 43 },
44 { 44 {
45 "test": "mojo_surfaces_lib_unittests", 45 "test": "mojo_surfaces_lib_unittests",
46 }, 46 },
47 { 47 {
48 "test": "url_response_disk_cache_unittests",
49 },
50 {
48 "test": "view_manager_service_unittests", 51 "test": "view_manager_service_unittests",
49 }, 52 },
50 { 53 {
51 "test": "window_manager_unittests", 54 "test": "window_manager_unittests",
52 }, 55 },
53 56
54 # Shell integration tests: 57 # Shell integration tests:
55 { 58 {
56 "test": "mojo_shell_tests", 59 "test": "mojo_shell_tests",
57 "cacheable": False, 60 "cacheable": False,
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "cacheable": False, 97 "cacheable": False,
95 }, 98 },
96 ] 99 ]
97 100
98 if config.target_os == config.OS_LINUX: 101 if config.target_os == config.OS_LINUX:
99 tests += [ 102 tests += [
100 { 103 {
101 "test": "sandbox_linux_unittests", 104 "test": "sandbox_linux_unittests",
102 }, 105 },
103 ] 106 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698