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

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

Issue 951893002: Revert "Cut down /crypto and switch what is left of it to boringssl." (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « crypto/wincrypt_shim.h ('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 # 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
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 ]
OLDNEW
« no previous file with comments | « crypto/wincrypt_shim.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698