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

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

Issue 1057733002: Require ECDHE for False Start. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix components build Created 5 years, 8 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 update_gypi_and_asm.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.c', 16 'src/crypto/base64/base64_test.cc',
17 ], 17 ],
18 # TODO(davidben): Fix size_t truncations in BoringSSL. 18 # TODO(davidben): Fix size_t truncations in BoringSSL.
19 # https://crbug.com/429039 19 # https://crbug.com/429039
20 'msvs_disabled_warnings': [ 4267, ], 20 'msvs_disabled_warnings': [ 4267, ],
21 }, 21 },
22 { 22 {
23 'target_name': 'boringssl_bio_test', 23 'target_name': 'boringssl_bio_test',
24 'type': 'executable', 24 'type': 'executable',
25 'dependencies': [ 25 'dependencies': [
26 'boringssl.gyp:boringssl', 26 'boringssl.gyp:boringssl',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'src/crypto/bio/bio_test.c', 29 'src/crypto/bio/bio_test.cc',
30 ], 30 ],
31 # TODO(davidben): Fix size_t truncations in BoringSSL. 31 # TODO(davidben): Fix size_t truncations in BoringSSL.
32 # https://crbug.com/429039 32 # https://crbug.com/429039
33 'msvs_disabled_warnings': [ 4267, ], 33 'msvs_disabled_warnings': [ 4267, ],
34 }, 34 },
35 { 35 {
36 'target_name': 'boringssl_bn_test', 36 'target_name': 'boringssl_bn_test',
37 'type': 'executable', 37 'type': 'executable',
38 'dependencies': [ 38 'dependencies': [
39 'boringssl.gyp:boringssl', 39 'boringssl.gyp:boringssl',
40 ], 40 ],
41 'sources': [ 41 'sources': [
42 'src/crypto/bn/bn_test.c', 42 'src/crypto/bn/bn_test.cc',
43 ], 43 ],
44 # TODO(davidben): Fix size_t truncations in BoringSSL. 44 # TODO(davidben): Fix size_t truncations in BoringSSL.
45 # https://crbug.com/429039 45 # https://crbug.com/429039
46 'msvs_disabled_warnings': [ 4267, ], 46 'msvs_disabled_warnings': [ 4267, ],
47 }, 47 },
48 { 48 {
49 'target_name': 'boringssl_bytestring_test', 49 'target_name': 'boringssl_bytestring_test',
50 'type': 'executable', 50 'type': 'executable',
51 'dependencies': [ 51 'dependencies': [
52 'boringssl.gyp:boringssl', 52 'boringssl.gyp:boringssl',
53 ], 53 ],
54 'sources': [ 54 'sources': [
55 'src/crypto/bytestring/bytestring_test.c', 55 'src/crypto/bytestring/bytestring_test.cc',
56 ], 56 ],
57 # TODO(davidben): Fix size_t truncations in BoringSSL. 57 # TODO(davidben): Fix size_t truncations in BoringSSL.
58 # https://crbug.com/429039 58 # https://crbug.com/429039
59 'msvs_disabled_warnings': [ 4267, ], 59 'msvs_disabled_warnings': [ 4267, ],
60 }, 60 },
61 { 61 {
62 'target_name': 'boringssl_aead_test', 62 'target_name': 'boringssl_aead_test',
63 'type': 'executable', 63 'type': 'executable',
64 'dependencies': [ 64 'dependencies': [
65 'boringssl.gyp:boringssl', 65 'boringssl.gyp:boringssl',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 # https://crbug.com/429039 110 # https://crbug.com/429039
111 'msvs_disabled_warnings': [ 4267, ], 111 'msvs_disabled_warnings': [ 4267, ],
112 }, 112 },
113 { 113 {
114 'target_name': 'boringssl_digest_test', 114 'target_name': 'boringssl_digest_test',
115 'type': 'executable', 115 'type': 'executable',
116 'dependencies': [ 116 'dependencies': [
117 'boringssl.gyp:boringssl', 117 'boringssl.gyp:boringssl',
118 ], 118 ],
119 'sources': [ 119 'sources': [
120 'src/crypto/digest/digest_test.c', 120 'src/crypto/digest/digest_test.cc',
121 ], 121 ],
122 # TODO(davidben): Fix size_t truncations in BoringSSL. 122 # TODO(davidben): Fix size_t truncations in BoringSSL.
123 # https://crbug.com/429039 123 # https://crbug.com/429039
124 'msvs_disabled_warnings': [ 4267, ], 124 'msvs_disabled_warnings': [ 4267, ],
125 }, 125 },
126 { 126 {
127 'target_name': 'boringssl_dsa_test', 127 'target_name': 'boringssl_dsa_test',
128 'type': 'executable', 128 'type': 'executable',
129 'dependencies': [ 129 'dependencies': [
130 'boringssl.gyp:boringssl', 130 'boringssl.gyp:boringssl',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 # https://crbug.com/429039 175 # https://crbug.com/429039
176 'msvs_disabled_warnings': [ 4267, ], 176 'msvs_disabled_warnings': [ 4267, ],
177 }, 177 },
178 { 178 {
179 'target_name': 'boringssl_err_test', 179 'target_name': 'boringssl_err_test',
180 'type': 'executable', 180 'type': 'executable',
181 'dependencies': [ 181 'dependencies': [
182 'boringssl.gyp:boringssl', 182 'boringssl.gyp:boringssl',
183 ], 183 ],
184 'sources': [ 184 'sources': [
185 'src/crypto/err/err_test.c', 185 'src/crypto/err/err_test.cc',
186 ], 186 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL. 187 # TODO(davidben): Fix size_t truncations in BoringSSL.
188 # https://crbug.com/429039 188 # https://crbug.com/429039
189 'msvs_disabled_warnings': [ 4267, ], 189 'msvs_disabled_warnings': [ 4267, ],
190 }, 190 },
191 { 191 {
192 'target_name': 'boringssl_evp_test', 192 'target_name': 'boringssl_evp_test',
193 'type': 'executable', 193 'type': 'executable',
194 'dependencies': [ 194 'dependencies': [
195 'boringssl.gyp:boringssl', 195 'boringssl.gyp:boringssl',
196 ], 196 ],
197 'sources': [ 197 'sources': [
198 'src/crypto/evp/evp_test.c', 198 'src/crypto/evp/evp_test.cc',
199 ], 199 ],
200 # TODO(davidben): Fix size_t truncations in BoringSSL. 200 # TODO(davidben): Fix size_t truncations in BoringSSL.
201 # https://crbug.com/429039 201 # https://crbug.com/429039
202 'msvs_disabled_warnings': [ 4267, ], 202 'msvs_disabled_warnings': [ 4267, ],
203 }, 203 },
204 { 204 {
205 'target_name': 'boringssl_pbkdf_test', 205 'target_name': 'boringssl_pbkdf_test',
206 'type': 'executable', 206 'type': 'executable',
207 'dependencies': [ 207 'dependencies': [
208 'boringssl.gyp:boringssl', 208 'boringssl.gyp:boringssl',
209 ], 209 ],
210 'sources': [ 210 'sources': [
211 'src/crypto/evp/pbkdf_test.c', 211 'src/crypto/evp/pbkdf_test.cc',
212 ], 212 ],
213 # TODO(davidben): Fix size_t truncations in BoringSSL. 213 # TODO(davidben): Fix size_t truncations in BoringSSL.
214 # https://crbug.com/429039 214 # https://crbug.com/429039
215 'msvs_disabled_warnings': [ 4267, ], 215 'msvs_disabled_warnings': [ 4267, ],
216 }, 216 },
217 { 217 {
218 'target_name': 'boringssl_hkdf_test', 218 'target_name': 'boringssl_hkdf_test',
219 'type': 'executable', 219 'type': 'executable',
220 'dependencies': [ 220 'dependencies': [
221 'boringssl.gyp:boringssl', 221 'boringssl.gyp:boringssl',
222 ], 222 ],
223 'sources': [ 223 'sources': [
224 'src/crypto/hkdf/hkdf_test.c', 224 'src/crypto/hkdf/hkdf_test.c',
225 ], 225 ],
226 # TODO(davidben): Fix size_t truncations in BoringSSL. 226 # TODO(davidben): Fix size_t truncations in BoringSSL.
227 # https://crbug.com/429039 227 # https://crbug.com/429039
228 'msvs_disabled_warnings': [ 4267, ], 228 'msvs_disabled_warnings': [ 4267, ],
229 }, 229 },
230 { 230 {
231 'target_name': 'boringssl_hmac_test', 231 'target_name': 'boringssl_hmac_test',
232 'type': 'executable', 232 'type': 'executable',
233 'dependencies': [ 233 'dependencies': [
234 'boringssl.gyp:boringssl', 234 'boringssl.gyp:boringssl',
235 ], 235 ],
236 'sources': [ 236 'sources': [
237 'src/crypto/hmac/hmac_test.c', 237 'src/crypto/hmac/hmac_test.cc',
238 ], 238 ],
239 # TODO(davidben): Fix size_t truncations in BoringSSL. 239 # TODO(davidben): Fix size_t truncations in BoringSSL.
240 # https://crbug.com/429039 240 # https://crbug.com/429039
241 'msvs_disabled_warnings': [ 4267, ], 241 'msvs_disabled_warnings': [ 4267, ],
242 }, 242 },
243 { 243 {
244 'target_name': 'boringssl_lhash_test', 244 'target_name': 'boringssl_lhash_test',
245 'type': 'executable', 245 'type': 'executable',
246 'dependencies': [ 246 'dependencies': [
247 'boringssl.gyp:boringssl', 247 'boringssl.gyp:boringssl',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 'boringssl.gyp:boringssl', 286 'boringssl.gyp:boringssl',
287 ], 287 ],
288 'sources': [ 288 'sources': [
289 'src/crypto/rsa/rsa_test.c', 289 'src/crypto/rsa/rsa_test.c',
290 ], 290 ],
291 # TODO(davidben): Fix size_t truncations in BoringSSL. 291 # TODO(davidben): Fix size_t truncations in BoringSSL.
292 # https://crbug.com/429039 292 # https://crbug.com/429039
293 'msvs_disabled_warnings': [ 4267, ], 293 'msvs_disabled_warnings': [ 4267, ],
294 }, 294 },
295 { 295 {
296 'target_name': 'boringssl_thread_test',
297 'type': 'executable',
298 'dependencies': [
299 'boringssl.gyp:boringssl',
300 ],
301 'sources': [
302 'src/crypto/thread_test.c',
303 ],
304 # TODO(davidben): Fix size_t truncations in BoringSSL.
305 # https://crbug.com/429039
306 'msvs_disabled_warnings': [ 4267, ],
307 },
308 {
296 'target_name': 'boringssl_pkcs7_test', 309 'target_name': 'boringssl_pkcs7_test',
297 'type': 'executable', 310 'type': 'executable',
298 'dependencies': [ 311 'dependencies': [
299 'boringssl.gyp:boringssl', 312 'boringssl.gyp:boringssl',
300 ], 313 ],
301 'sources': [ 314 'sources': [
302 'src/crypto/x509/pkcs7_test.c', 315 'src/crypto/x509/pkcs7_test.c',
303 ], 316 ],
304 # TODO(davidben): Fix size_t truncations in BoringSSL. 317 # TODO(davidben): Fix size_t truncations in BoringSSL.
305 # https://crbug.com/429039 318 # https://crbug.com/429039
(...skipping 12 matching lines...) Expand all
318 # https://crbug.com/429039 331 # https://crbug.com/429039
319 'msvs_disabled_warnings': [ 4267, ], 332 'msvs_disabled_warnings': [ 4267, ],
320 }, 333 },
321 { 334 {
322 'target_name': 'boringssl_ssl_test', 335 'target_name': 'boringssl_ssl_test',
323 'type': 'executable', 336 'type': 'executable',
324 'dependencies': [ 337 'dependencies': [
325 'boringssl.gyp:boringssl', 338 'boringssl.gyp:boringssl',
326 ], 339 ],
327 'sources': [ 340 'sources': [
328 'src/ssl/ssl_test.c', 341 'src/ssl/ssl_test.cc',
329 ], 342 ],
330 # TODO(davidben): Fix size_t truncations in BoringSSL. 343 # TODO(davidben): Fix size_t truncations in BoringSSL.
331 # https://crbug.com/429039 344 # https://crbug.com/429039
332 'msvs_disabled_warnings': [ 4267, ], 345 'msvs_disabled_warnings': [ 4267, ],
333 }, 346 },
334 ], 347 ],
335 'variables': { 348 'variables': {
336 'boringssl_test_targets': [ 349 'boringssl_test_targets': [
337 'boringssl_aead_test', 350 'boringssl_aead_test',
338 'boringssl_base64_test', 351 'boringssl_base64_test',
(...skipping 13 matching lines...) Expand all
352 'boringssl_gcm_test', 365 'boringssl_gcm_test',
353 'boringssl_hkdf_test', 366 'boringssl_hkdf_test',
354 'boringssl_hmac_test', 367 'boringssl_hmac_test',
355 'boringssl_lhash_test', 368 'boringssl_lhash_test',
356 'boringssl_pbkdf_test', 369 'boringssl_pbkdf_test',
357 'boringssl_pkcs12_test', 370 'boringssl_pkcs12_test',
358 'boringssl_pkcs7_test', 371 'boringssl_pkcs7_test',
359 'boringssl_pqueue_test', 372 'boringssl_pqueue_test',
360 'boringssl_rsa_test', 373 'boringssl_rsa_test',
361 'boringssl_ssl_test', 374 'boringssl_ssl_test',
375 'boringssl_thread_test',
362 ], 376 ],
363 } 377 }
364 } 378 }
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