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

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

Issue 1430093006: EDK: Split the mojo_edk_system_unittests target. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « mojo/edk/util/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # EDK tests:
9 {
10 "test": "mojo_edk_embedder_unittests",
11 },
9 { 12 {
10 "test": "mojo_edk_system_unittests", 13 "test": "mojo_edk_system_unittests",
11 }, 14 },
15 {
16 "test": "mojo_edk_system_test_unittests",
17 },
18 {
19 "test": "mojo_edk_util_unittests",
20 },
12 21
13 # Public tests: 22 # Public tests:
14 { 23 {
15 "test": "mojo_public_bindings_unittests", 24 "test": "mojo_public_bindings_unittests",
16 "cacheable": False, 25 "cacheable": False,
17 }, 26 },
18 { 27 {
19 "test": "mojo_public_environment_unittests", 28 "test": "mojo_public_environment_unittests",
20 }, 29 },
21 { 30 {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "cacheable": False, 106 "cacheable": False,
98 }, 107 },
99 ] 108 ]
100 109
101 if config.target_os == config.OS_LINUX: 110 if config.target_os == config.OS_LINUX:
102 tests += [ 111 tests += [
103 { 112 {
104 "test": "sandbox_linux_unittests", 113 "test": "sandbox_linux_unittests",
105 }, 114 },
106 ] 115 ]
OLDNEW
« no previous file with comments | « mojo/edk/util/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698