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

Side by Side Diff: third_party/boringssl/boringssl_tests.gypi

Issue 377783004: Add BoringSSL GYP files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Final Python fix. Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file is created by update_gypi_and_asm.py. Do not edit manually.
6
7 {
8 'targets': [
9 {
10 'target_name': 'boringssl_sha1_test',
11 'type': 'executable',
12 'dependencies': [
13 'boringssl',
14 ],
15 'sources': [
16 'src/crypto/sha/sha1_test.c',
17 ],
18 },
19 {
20 'target_name': 'boringssl_gcm_test',
21 'type': 'executable',
22 'dependencies': [
23 'boringssl',
24 ],
25 'sources': [
26 'src/crypto/modes/gcm_test.c',
27 ],
28 },
29 {
30 'target_name': 'boringssl_err_test',
31 'type': 'executable',
32 'dependencies': [
33 'boringssl',
34 ],
35 'sources': [
36 'src/crypto/err/err_test.c',
37 ],
38 },
39 {
40 'target_name': 'boringssl_dsa_test',
41 'type': 'executable',
42 'dependencies': [
43 'boringssl',
44 ],
45 'sources': [
46 'src/crypto/dsa/dsa_test.c',
47 ],
48 },
49 {
50 'target_name': 'boringssl_dh_test',
51 'type': 'executable',
52 'dependencies': [
53 'boringssl',
54 ],
55 'sources': [
56 'src/crypto/dh/dh_test.c',
57 ],
58 },
59 {
60 'target_name': 'boringssl_aead_test',
61 'type': 'executable',
62 'dependencies': [
63 'boringssl',
64 ],
65 'sources': [
66 'src/crypto/cipher/aead_test.c',
67 ],
68 },
69 {
70 'target_name': 'boringssl_cipher_test',
71 'type': 'executable',
72 'dependencies': [
73 'boringssl',
74 ],
75 'sources': [
76 'src/crypto/cipher/cipher_test.c',
77 ],
78 },
79 {
80 'target_name': 'boringssl_hmac_test',
81 'type': 'executable',
82 'dependencies': [
83 'boringssl',
84 ],
85 'sources': [
86 'src/crypto/hmac/hmac_test.c',
87 ],
88 },
89 {
90 'target_name': 'boringssl_lhash_test',
91 'type': 'executable',
92 'dependencies': [
93 'boringssl',
94 ],
95 'sources': [
96 'src/crypto/lhash/lhash_test.c',
97 ],
98 },
99 {
100 'target_name': 'boringssl_bio_test',
101 'type': 'executable',
102 'dependencies': [
103 'boringssl',
104 ],
105 'sources': [
106 'src/crypto/bio/bio_test.c',
107 ],
108 },
109 {
110 'target_name': 'boringssl_md5_test',
111 'type': 'executable',
112 'dependencies': [
113 'boringssl',
114 ],
115 'sources': [
116 'src/crypto/md5/md5_test.c',
117 ],
118 },
119 {
120 'target_name': 'boringssl_rsa_test',
121 'type': 'executable',
122 'dependencies': [
123 'boringssl',
124 ],
125 'sources': [
126 'src/crypto/rsa/rsa_test.c',
127 ],
128 },
129 {
130 'target_name': 'boringssl_example_sign',
131 'type': 'executable',
132 'dependencies': [
133 'boringssl',
134 ],
135 'sources': [
136 'src/crypto/evp/example_sign.c',
137 ],
138 },
139 {
140 'target_name': 'boringssl_bn_test',
141 'type': 'executable',
142 'dependencies': [
143 'boringssl',
144 ],
145 'sources': [
146 'src/crypto/bn/bn_test.c',
147 ],
148 },
149 {
150 'target_name': 'boringssl_bytestring_test',
151 'type': 'executable',
152 'dependencies': [
153 'boringssl',
154 ],
155 'sources': [
156 'src/crypto/bytestring/bytestring_test.c',
157 ],
158 },
159 {
160 'target_name': 'boringssl_example_mul',
161 'type': 'executable',
162 'dependencies': [
163 'boringssl',
164 ],
165 'sources': [
166 'src/crypto/ec/example_mul.c',
167 ],
168 },
169 {
170 'target_name': 'boringssl_ecdsa_test',
171 'type': 'executable',
172 'dependencies': [
173 'boringssl',
174 ],
175 'sources': [
176 'src/crypto/ecdsa/ecdsa_test.c',
177 ],
178 },
179 ],
180 'variables': {
181 'boringssl_test_targets': [
182 'boringssl_aead_test',
183 'boringssl_bio_test',
184 'boringssl_bn_test',
185 'boringssl_bytestring_test',
186 'boringssl_cipher_test',
187 'boringssl_dh_test',
188 'boringssl_dsa_test',
189 'boringssl_ecdsa_test',
190 'boringssl_err_test',
191 'boringssl_example_mul',
192 'boringssl_example_sign',
193 'boringssl_gcm_test',
194 'boringssl_hmac_test',
195 'boringssl_lhash_test',
196 'boringssl_md5_test',
197 'boringssl_rsa_test',
198 'boringssl_sha1_test',
199 ],
200 }
201 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl.gypi ('k') | third_party/boringssl/boringssl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698