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

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

Issue 1136743004: Roll src/third_party/boringssl/src 68de407:771a138 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 | « 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
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is created by update_gypi_and_asm.py. Do not edit manually. 5 # This file is created by generate_build_files.py. Do not edit manually.
6 6
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'boringssl_base64_test', 10 'target_name': 'boringssl_base64_test',
11 'type': 'executable', 11 'type': 'executable',
12 'dependencies': [ 12 'dependencies': [
13 'boringssl.gyp:boringssl', 13 'boringssl.gyp:boringssl',
14 ], 14 ],
15 'sources': [ 15 'sources': [
16 'src/crypto/base64/base64_test.cc', 16 'src/crypto/base64/base64_test.cc',
17 '<@(boringssl_test_support_sources)',
17 ], 18 ],
18 # TODO(davidben): Fix size_t truncations in BoringSSL. 19 # TODO(davidben): Fix size_t truncations in BoringSSL.
19 # https://crbug.com/429039 20 # https://crbug.com/429039
20 'msvs_disabled_warnings': [ 4267, ], 21 'msvs_disabled_warnings': [ 4267, ],
21 }, 22 },
22 { 23 {
23 'target_name': 'boringssl_bio_test', 24 'target_name': 'boringssl_bio_test',
24 'type': 'executable', 25 'type': 'executable',
25 'dependencies': [ 26 'dependencies': [
26 'boringssl.gyp:boringssl', 27 'boringssl.gyp:boringssl',
27 ], 28 ],
28 'sources': [ 29 'sources': [
29 'src/crypto/bio/bio_test.cc', 30 'src/crypto/bio/bio_test.cc',
31 '<@(boringssl_test_support_sources)',
30 ], 32 ],
31 # TODO(davidben): Fix size_t truncations in BoringSSL. 33 # TODO(davidben): Fix size_t truncations in BoringSSL.
32 # https://crbug.com/429039 34 # https://crbug.com/429039
33 'msvs_disabled_warnings': [ 4267, ], 35 'msvs_disabled_warnings': [ 4267, ],
34 }, 36 },
35 { 37 {
36 'target_name': 'boringssl_bn_test', 38 'target_name': 'boringssl_bn_test',
37 'type': 'executable', 39 'type': 'executable',
38 'dependencies': [ 40 'dependencies': [
39 'boringssl.gyp:boringssl', 41 'boringssl.gyp:boringssl',
40 ], 42 ],
41 'sources': [ 43 'sources': [
42 'src/crypto/bn/bn_test.cc', 44 'src/crypto/bn/bn_test.cc',
45 '<@(boringssl_test_support_sources)',
43 ], 46 ],
44 # TODO(davidben): Fix size_t truncations in BoringSSL. 47 # TODO(davidben): Fix size_t truncations in BoringSSL.
45 # https://crbug.com/429039 48 # https://crbug.com/429039
46 'msvs_disabled_warnings': [ 4267, ], 49 'msvs_disabled_warnings': [ 4267, ],
47 }, 50 },
48 { 51 {
49 'target_name': 'boringssl_bytestring_test', 52 'target_name': 'boringssl_bytestring_test',
50 'type': 'executable', 53 'type': 'executable',
51 'dependencies': [ 54 'dependencies': [
52 'boringssl.gyp:boringssl', 55 'boringssl.gyp:boringssl',
53 ], 56 ],
54 'sources': [ 57 'sources': [
55 'src/crypto/bytestring/bytestring_test.cc', 58 'src/crypto/bytestring/bytestring_test.cc',
59 '<@(boringssl_test_support_sources)',
56 ], 60 ],
57 # TODO(davidben): Fix size_t truncations in BoringSSL. 61 # TODO(davidben): Fix size_t truncations in BoringSSL.
58 # https://crbug.com/429039 62 # https://crbug.com/429039
59 'msvs_disabled_warnings': [ 4267, ], 63 'msvs_disabled_warnings': [ 4267, ],
60 }, 64 },
61 { 65 {
62 'target_name': 'boringssl_aead_test', 66 'target_name': 'boringssl_aead_test',
63 'type': 'executable', 67 'type': 'executable',
64 'dependencies': [ 68 'dependencies': [
65 'boringssl.gyp:boringssl', 69 'boringssl.gyp:boringssl',
66 ], 70 ],
67 'sources': [ 71 'sources': [
68 'src/crypto/cipher/aead_test.c', 72 'src/crypto/cipher/aead_test.cc',
73 '<@(boringssl_test_support_sources)',
69 ], 74 ],
70 # TODO(davidben): Fix size_t truncations in BoringSSL. 75 # TODO(davidben): Fix size_t truncations in BoringSSL.
71 # https://crbug.com/429039 76 # https://crbug.com/429039
72 'msvs_disabled_warnings': [ 4267, ], 77 'msvs_disabled_warnings': [ 4267, ],
73 }, 78 },
74 { 79 {
75 'target_name': 'boringssl_cipher_test', 80 'target_name': 'boringssl_cipher_test',
76 'type': 'executable', 81 'type': 'executable',
77 'dependencies': [ 82 'dependencies': [
78 'boringssl.gyp:boringssl', 83 'boringssl.gyp:boringssl',
79 ], 84 ],
80 'sources': [ 85 'sources': [
81 'src/crypto/cipher/cipher_test.c', 86 'src/crypto/cipher/cipher_test.c',
87 '<@(boringssl_test_support_sources)',
82 ], 88 ],
83 # TODO(davidben): Fix size_t truncations in BoringSSL. 89 # TODO(davidben): Fix size_t truncations in BoringSSL.
84 # https://crbug.com/429039 90 # https://crbug.com/429039
91 'msvs_disabled_warnings': [ 4267, ],
92 },
93 {
94 'target_name': 'boringssl_cmac_test',
95 'type': 'executable',
96 'dependencies': [
97 'boringssl.gyp:boringssl',
98 ],
99 'sources': [
100 'src/crypto/cmac/cmac_test.cc',
101 '<@(boringssl_test_support_sources)',
102 ],
103 # TODO(davidben): Fix size_t truncations in BoringSSL.
104 # https://crbug.com/429039
85 'msvs_disabled_warnings': [ 4267, ], 105 'msvs_disabled_warnings': [ 4267, ],
86 }, 106 },
87 { 107 {
88 'target_name': 'boringssl_constant_time_test', 108 'target_name': 'boringssl_constant_time_test',
89 'type': 'executable', 109 'type': 'executable',
90 'dependencies': [ 110 'dependencies': [
91 'boringssl.gyp:boringssl', 111 'boringssl.gyp:boringssl',
92 ], 112 ],
93 'sources': [ 113 'sources': [
94 'src/crypto/constant_time_test.c', 114 'src/crypto/constant_time_test.c',
115 '<@(boringssl_test_support_sources)',
95 ], 116 ],
96 # TODO(davidben): Fix size_t truncations in BoringSSL. 117 # TODO(davidben): Fix size_t truncations in BoringSSL.
97 # https://crbug.com/429039 118 # https://crbug.com/429039
98 'msvs_disabled_warnings': [ 4267, ], 119 'msvs_disabled_warnings': [ 4267, ],
99 }, 120 },
100 { 121 {
101 'target_name': 'boringssl_dh_test', 122 'target_name': 'boringssl_dh_test',
102 'type': 'executable', 123 'type': 'executable',
103 'dependencies': [ 124 'dependencies': [
104 'boringssl.gyp:boringssl', 125 'boringssl.gyp:boringssl',
105 ], 126 ],
106 'sources': [ 127 'sources': [
107 'src/crypto/dh/dh_test.c', 128 'src/crypto/dh/dh_test.cc',
129 '<@(boringssl_test_support_sources)',
108 ], 130 ],
109 # TODO(davidben): Fix size_t truncations in BoringSSL. 131 # TODO(davidben): Fix size_t truncations in BoringSSL.
110 # https://crbug.com/429039 132 # https://crbug.com/429039
111 'msvs_disabled_warnings': [ 4267, ], 133 'msvs_disabled_warnings': [ 4267, ],
112 }, 134 },
113 { 135 {
114 'target_name': 'boringssl_digest_test', 136 'target_name': 'boringssl_digest_test',
115 'type': 'executable', 137 'type': 'executable',
116 'dependencies': [ 138 'dependencies': [
117 'boringssl.gyp:boringssl', 139 'boringssl.gyp:boringssl',
118 ], 140 ],
119 'sources': [ 141 'sources': [
120 'src/crypto/digest/digest_test.cc', 142 'src/crypto/digest/digest_test.cc',
143 '<@(boringssl_test_support_sources)',
121 ], 144 ],
122 # TODO(davidben): Fix size_t truncations in BoringSSL. 145 # TODO(davidben): Fix size_t truncations in BoringSSL.
123 # https://crbug.com/429039 146 # https://crbug.com/429039
124 'msvs_disabled_warnings': [ 4267, ], 147 'msvs_disabled_warnings': [ 4267, ],
125 }, 148 },
126 { 149 {
127 'target_name': 'boringssl_dsa_test', 150 'target_name': 'boringssl_dsa_test',
128 'type': 'executable', 151 'type': 'executable',
129 'dependencies': [ 152 'dependencies': [
130 'boringssl.gyp:boringssl', 153 'boringssl.gyp:boringssl',
131 ], 154 ],
132 'sources': [ 155 'sources': [
133 'src/crypto/dsa/dsa_test.c', 156 'src/crypto/dsa/dsa_test.c',
157 '<@(boringssl_test_support_sources)',
134 ], 158 ],
135 # TODO(davidben): Fix size_t truncations in BoringSSL. 159 # TODO(davidben): Fix size_t truncations in BoringSSL.
136 # https://crbug.com/429039 160 # https://crbug.com/429039
137 'msvs_disabled_warnings': [ 4267, ], 161 'msvs_disabled_warnings': [ 4267, ],
138 }, 162 },
139 { 163 {
140 'target_name': 'boringssl_ec_test', 164 'target_name': 'boringssl_ec_test',
141 'type': 'executable', 165 'type': 'executable',
142 'dependencies': [ 166 'dependencies': [
143 'boringssl.gyp:boringssl', 167 'boringssl.gyp:boringssl',
144 ], 168 ],
145 'sources': [ 169 'sources': [
146 'src/crypto/ec/ec_test.cc', 170 'src/crypto/ec/ec_test.cc',
171 '<@(boringssl_test_support_sources)',
147 ], 172 ],
148 # TODO(davidben): Fix size_t truncations in BoringSSL. 173 # TODO(davidben): Fix size_t truncations in BoringSSL.
149 # https://crbug.com/429039 174 # https://crbug.com/429039
150 'msvs_disabled_warnings': [ 4267, ], 175 'msvs_disabled_warnings': [ 4267, ],
151 }, 176 },
152 { 177 {
153 'target_name': 'boringssl_example_mul', 178 'target_name': 'boringssl_example_mul',
154 'type': 'executable', 179 'type': 'executable',
155 'dependencies': [ 180 'dependencies': [
156 'boringssl.gyp:boringssl', 181 'boringssl.gyp:boringssl',
157 ], 182 ],
158 'sources': [ 183 'sources': [
159 'src/crypto/ec/example_mul.c', 184 'src/crypto/ec/example_mul.c',
185 '<@(boringssl_test_support_sources)',
160 ], 186 ],
161 # TODO(davidben): Fix size_t truncations in BoringSSL. 187 # TODO(davidben): Fix size_t truncations in BoringSSL.
162 # https://crbug.com/429039 188 # https://crbug.com/429039
163 'msvs_disabled_warnings': [ 4267, ], 189 'msvs_disabled_warnings': [ 4267, ],
164 }, 190 },
165 { 191 {
166 'target_name': 'boringssl_ecdsa_test', 192 'target_name': 'boringssl_ecdsa_test',
167 'type': 'executable', 193 'type': 'executable',
168 'dependencies': [ 194 'dependencies': [
169 'boringssl.gyp:boringssl', 195 'boringssl.gyp:boringssl',
170 ], 196 ],
171 'sources': [ 197 'sources': [
172 'src/crypto/ecdsa/ecdsa_test.cc', 198 'src/crypto/ecdsa/ecdsa_test.cc',
199 '<@(boringssl_test_support_sources)',
173 ], 200 ],
174 # TODO(davidben): Fix size_t truncations in BoringSSL. 201 # TODO(davidben): Fix size_t truncations in BoringSSL.
175 # https://crbug.com/429039 202 # https://crbug.com/429039
176 'msvs_disabled_warnings': [ 4267, ], 203 'msvs_disabled_warnings': [ 4267, ],
177 }, 204 },
178 { 205 {
179 'target_name': 'boringssl_err_test', 206 'target_name': 'boringssl_err_test',
180 'type': 'executable', 207 'type': 'executable',
181 'dependencies': [ 208 'dependencies': [
182 'boringssl.gyp:boringssl', 209 'boringssl.gyp:boringssl',
183 ], 210 ],
184 'sources': [ 211 'sources': [
185 'src/crypto/err/err_test.cc', 212 'src/crypto/err/err_test.cc',
213 '<@(boringssl_test_support_sources)',
186 ], 214 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL. 215 # TODO(davidben): Fix size_t truncations in BoringSSL.
188 # https://crbug.com/429039 216 # https://crbug.com/429039
217 'msvs_disabled_warnings': [ 4267, ],
218 },
219 {
220 'target_name': 'boringssl_evp_extra_test',
221 'type': 'executable',
222 'dependencies': [
223 'boringssl.gyp:boringssl',
224 ],
225 'sources': [
226 'src/crypto/evp/evp_extra_test.cc',
227 '<@(boringssl_test_support_sources)',
228 ],
229 # TODO(davidben): Fix size_t truncations in BoringSSL.
230 # https://crbug.com/429039
189 'msvs_disabled_warnings': [ 4267, ], 231 'msvs_disabled_warnings': [ 4267, ],
190 }, 232 },
191 { 233 {
192 'target_name': 'boringssl_evp_test', 234 'target_name': 'boringssl_evp_test',
193 'type': 'executable', 235 'type': 'executable',
194 'dependencies': [ 236 'dependencies': [
195 'boringssl.gyp:boringssl', 237 'boringssl.gyp:boringssl',
196 ], 238 ],
197 'sources': [ 239 'sources': [
198 'src/crypto/evp/evp_test.cc', 240 'src/crypto/evp/evp_test.cc',
241 '<@(boringssl_test_support_sources)',
199 ], 242 ],
200 # TODO(davidben): Fix size_t truncations in BoringSSL. 243 # TODO(davidben): Fix size_t truncations in BoringSSL.
201 # https://crbug.com/429039 244 # https://crbug.com/429039
202 'msvs_disabled_warnings': [ 4267, ], 245 'msvs_disabled_warnings': [ 4267, ],
203 }, 246 },
204 { 247 {
205 'target_name': 'boringssl_pbkdf_test', 248 'target_name': 'boringssl_pbkdf_test',
206 'type': 'executable', 249 'type': 'executable',
207 'dependencies': [ 250 'dependencies': [
208 'boringssl.gyp:boringssl', 251 'boringssl.gyp:boringssl',
209 ], 252 ],
210 'sources': [ 253 'sources': [
211 'src/crypto/evp/pbkdf_test.cc', 254 'src/crypto/evp/pbkdf_test.cc',
255 '<@(boringssl_test_support_sources)',
212 ], 256 ],
213 # TODO(davidben): Fix size_t truncations in BoringSSL. 257 # TODO(davidben): Fix size_t truncations in BoringSSL.
214 # https://crbug.com/429039 258 # https://crbug.com/429039
215 'msvs_disabled_warnings': [ 4267, ], 259 'msvs_disabled_warnings': [ 4267, ],
216 }, 260 },
217 { 261 {
218 'target_name': 'boringssl_hkdf_test', 262 'target_name': 'boringssl_hkdf_test',
219 'type': 'executable', 263 'type': 'executable',
220 'dependencies': [ 264 'dependencies': [
221 'boringssl.gyp:boringssl', 265 'boringssl.gyp:boringssl',
222 ], 266 ],
223 'sources': [ 267 'sources': [
224 'src/crypto/hkdf/hkdf_test.c', 268 'src/crypto/hkdf/hkdf_test.c',
269 '<@(boringssl_test_support_sources)',
225 ], 270 ],
226 # TODO(davidben): Fix size_t truncations in BoringSSL. 271 # TODO(davidben): Fix size_t truncations in BoringSSL.
227 # https://crbug.com/429039 272 # https://crbug.com/429039
228 'msvs_disabled_warnings': [ 4267, ], 273 'msvs_disabled_warnings': [ 4267, ],
229 }, 274 },
230 { 275 {
231 'target_name': 'boringssl_hmac_test', 276 'target_name': 'boringssl_hmac_test',
232 'type': 'executable', 277 'type': 'executable',
233 'dependencies': [ 278 'dependencies': [
234 'boringssl.gyp:boringssl', 279 'boringssl.gyp:boringssl',
235 ], 280 ],
236 'sources': [ 281 'sources': [
237 'src/crypto/hmac/hmac_test.cc', 282 'src/crypto/hmac/hmac_test.cc',
283 '<@(boringssl_test_support_sources)',
238 ], 284 ],
239 # TODO(davidben): Fix size_t truncations in BoringSSL. 285 # TODO(davidben): Fix size_t truncations in BoringSSL.
240 # https://crbug.com/429039 286 # https://crbug.com/429039
241 'msvs_disabled_warnings': [ 4267, ], 287 'msvs_disabled_warnings': [ 4267, ],
242 }, 288 },
243 { 289 {
244 'target_name': 'boringssl_lhash_test', 290 'target_name': 'boringssl_lhash_test',
245 'type': 'executable', 291 'type': 'executable',
246 'dependencies': [ 292 'dependencies': [
247 'boringssl.gyp:boringssl', 293 'boringssl.gyp:boringssl',
248 ], 294 ],
249 'sources': [ 295 'sources': [
250 'src/crypto/lhash/lhash_test.c', 296 'src/crypto/lhash/lhash_test.c',
297 '<@(boringssl_test_support_sources)',
251 ], 298 ],
252 # TODO(davidben): Fix size_t truncations in BoringSSL. 299 # TODO(davidben): Fix size_t truncations in BoringSSL.
253 # https://crbug.com/429039 300 # https://crbug.com/429039
254 'msvs_disabled_warnings': [ 4267, ], 301 'msvs_disabled_warnings': [ 4267, ],
255 }, 302 },
256 { 303 {
257 'target_name': 'boringssl_gcm_test', 304 'target_name': 'boringssl_gcm_test',
258 'type': 'executable', 305 'type': 'executable',
259 'dependencies': [ 306 'dependencies': [
260 'boringssl.gyp:boringssl', 307 'boringssl.gyp:boringssl',
261 ], 308 ],
262 'sources': [ 309 'sources': [
263 'src/crypto/modes/gcm_test.c', 310 'src/crypto/modes/gcm_test.c',
311 '<@(boringssl_test_support_sources)',
264 ], 312 ],
265 # TODO(davidben): Fix size_t truncations in BoringSSL. 313 # TODO(davidben): Fix size_t truncations in BoringSSL.
266 # https://crbug.com/429039 314 # https://crbug.com/429039
267 'msvs_disabled_warnings': [ 4267, ], 315 'msvs_disabled_warnings': [ 4267, ],
268 }, 316 },
269 { 317 {
270 'target_name': 'boringssl_pkcs12_test', 318 'target_name': 'boringssl_pkcs12_test',
271 'type': 'executable', 319 'type': 'executable',
272 'dependencies': [ 320 'dependencies': [
273 'boringssl.gyp:boringssl', 321 'boringssl.gyp:boringssl',
274 ], 322 ],
275 'sources': [ 323 'sources': [
276 'src/crypto/pkcs8/pkcs12_test.c', 324 'src/crypto/pkcs8/pkcs12_test.cc',
325 '<@(boringssl_test_support_sources)',
277 ], 326 ],
278 # TODO(davidben): Fix size_t truncations in BoringSSL. 327 # TODO(davidben): Fix size_t truncations in BoringSSL.
279 # https://crbug.com/429039 328 # https://crbug.com/429039
280 'msvs_disabled_warnings': [ 4267, ], 329 'msvs_disabled_warnings': [ 4267, ],
281 }, 330 },
282 { 331 {
283 'target_name': 'boringssl_rsa_test', 332 'target_name': 'boringssl_rsa_test',
284 'type': 'executable', 333 'type': 'executable',
285 'dependencies': [ 334 'dependencies': [
286 'boringssl.gyp:boringssl', 335 'boringssl.gyp:boringssl',
287 ], 336 ],
288 'sources': [ 337 'sources': [
289 'src/crypto/rsa/rsa_test.c', 338 'src/crypto/rsa/rsa_test.c',
339 '<@(boringssl_test_support_sources)',
290 ], 340 ],
291 # TODO(davidben): Fix size_t truncations in BoringSSL. 341 # TODO(davidben): Fix size_t truncations in BoringSSL.
292 # https://crbug.com/429039 342 # https://crbug.com/429039
293 'msvs_disabled_warnings': [ 4267, ], 343 'msvs_disabled_warnings': [ 4267, ],
294 }, 344 },
295 { 345 {
296 'target_name': 'boringssl_thread_test', 346 'target_name': 'boringssl_thread_test',
297 'type': 'executable', 347 'type': 'executable',
298 'dependencies': [ 348 'dependencies': [
299 'boringssl.gyp:boringssl', 349 'boringssl.gyp:boringssl',
300 ], 350 ],
301 'sources': [ 351 'sources': [
302 'src/crypto/thread_test.c', 352 'src/crypto/thread_test.c',
353 '<@(boringssl_test_support_sources)',
303 ], 354 ],
304 # TODO(davidben): Fix size_t truncations in BoringSSL. 355 # TODO(davidben): Fix size_t truncations in BoringSSL.
305 # https://crbug.com/429039 356 # https://crbug.com/429039
306 'msvs_disabled_warnings': [ 4267, ], 357 'msvs_disabled_warnings': [ 4267, ],
307 }, 358 },
308 { 359 {
309 'target_name': 'boringssl_pkcs7_test', 360 'target_name': 'boringssl_pkcs7_test',
310 'type': 'executable', 361 'type': 'executable',
311 'dependencies': [ 362 'dependencies': [
312 'boringssl.gyp:boringssl', 363 'boringssl.gyp:boringssl',
313 ], 364 ],
314 'sources': [ 365 'sources': [
315 'src/crypto/x509/pkcs7_test.c', 366 'src/crypto/x509/pkcs7_test.c',
367 '<@(boringssl_test_support_sources)',
316 ], 368 ],
317 # TODO(davidben): Fix size_t truncations in BoringSSL. 369 # TODO(davidben): Fix size_t truncations in BoringSSL.
318 # https://crbug.com/429039 370 # https://crbug.com/429039
319 'msvs_disabled_warnings': [ 4267, ], 371 'msvs_disabled_warnings': [ 4267, ],
320 }, 372 },
321 { 373 {
322 'target_name': 'boringssl_pqueue_test', 374 'target_name': 'boringssl_pqueue_test',
323 'type': 'executable', 375 'type': 'executable',
324 'dependencies': [ 376 'dependencies': [
325 'boringssl.gyp:boringssl', 377 'boringssl.gyp:boringssl',
326 ], 378 ],
327 'sources': [ 379 'sources': [
328 'src/ssl/pqueue/pqueue_test.c', 380 'src/ssl/pqueue/pqueue_test.c',
381 '<@(boringssl_test_support_sources)',
329 ], 382 ],
330 # TODO(davidben): Fix size_t truncations in BoringSSL. 383 # TODO(davidben): Fix size_t truncations in BoringSSL.
331 # https://crbug.com/429039 384 # https://crbug.com/429039
332 'msvs_disabled_warnings': [ 4267, ], 385 'msvs_disabled_warnings': [ 4267, ],
333 }, 386 },
334 { 387 {
335 'target_name': 'boringssl_ssl_test', 388 'target_name': 'boringssl_ssl_test',
336 'type': 'executable', 389 'type': 'executable',
337 'dependencies': [ 390 'dependencies': [
338 'boringssl.gyp:boringssl', 391 'boringssl.gyp:boringssl',
339 ], 392 ],
340 'sources': [ 393 'sources': [
341 'src/ssl/ssl_test.cc', 394 'src/ssl/ssl_test.cc',
395 '<@(boringssl_test_support_sources)',
342 ], 396 ],
343 # TODO(davidben): Fix size_t truncations in BoringSSL. 397 # TODO(davidben): Fix size_t truncations in BoringSSL.
344 # https://crbug.com/429039 398 # https://crbug.com/429039
345 'msvs_disabled_warnings': [ 4267, ], 399 'msvs_disabled_warnings': [ 4267, ],
346 }, 400 },
347 ], 401 ],
348 'variables': { 402 'variables': {
403 'boringssl_test_support_sources': [
404 'src/crypto/test/file_test.cc',
405 ],
349 'boringssl_test_targets': [ 406 'boringssl_test_targets': [
350 'boringssl_aead_test', 407 'boringssl_aead_test',
351 'boringssl_base64_test', 408 'boringssl_base64_test',
352 'boringssl_bio_test', 409 'boringssl_bio_test',
353 'boringssl_bn_test', 410 'boringssl_bn_test',
354 'boringssl_bytestring_test', 411 'boringssl_bytestring_test',
355 'boringssl_cipher_test', 412 'boringssl_cipher_test',
413 'boringssl_cmac_test',
356 'boringssl_constant_time_test', 414 'boringssl_constant_time_test',
357 'boringssl_dh_test', 415 'boringssl_dh_test',
358 'boringssl_digest_test', 416 'boringssl_digest_test',
359 'boringssl_dsa_test', 417 'boringssl_dsa_test',
360 'boringssl_ec_test', 418 'boringssl_ec_test',
361 'boringssl_ecdsa_test', 419 'boringssl_ecdsa_test',
362 'boringssl_err_test', 420 'boringssl_err_test',
421 'boringssl_evp_extra_test',
363 'boringssl_evp_test', 422 'boringssl_evp_test',
364 'boringssl_example_mul', 423 'boringssl_example_mul',
365 'boringssl_gcm_test', 424 'boringssl_gcm_test',
366 'boringssl_hkdf_test', 425 'boringssl_hkdf_test',
367 'boringssl_hmac_test', 426 'boringssl_hmac_test',
368 'boringssl_lhash_test', 427 'boringssl_lhash_test',
369 'boringssl_pbkdf_test', 428 'boringssl_pbkdf_test',
370 'boringssl_pkcs12_test', 429 'boringssl_pkcs12_test',
371 'boringssl_pkcs7_test', 430 'boringssl_pkcs7_test',
372 'boringssl_pqueue_test', 431 'boringssl_pqueue_test',
373 'boringssl_rsa_test', 432 'boringssl_rsa_test',
374 'boringssl_ssl_test', 433 'boringssl_ssl_test',
375 'boringssl_thread_test', 434 'boringssl_thread_test',
376 ], 435 ],
377 } 436 }
378 } 437 }
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