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

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

Issue 2219933002: Land BoringSSL roll on master (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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_dart.gyp ('k') | third_party/boringssl/err_data.c » ('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) 2016 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 generate_build_files.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_aes_test',
11 'type': 'executable',
12 'dependencies': [
13 'boringssl.gyp:boringssl',
14 ],
15 'sources': [
16 'src/crypto/aes/aes_test.cc',
17 '<@(boringssl_test_support_sources)',
18 ],
19 # TODO(davidben): Fix size_t truncations in BoringSSL.
20 # https://crbug.com/429039
21 'msvs_disabled_warnings': [ 4267, ],
22 },
23 {
24 'target_name': 'boringssl_asn1_test',
25 'type': 'executable',
26 'dependencies': [
27 'boringssl.gyp:boringssl',
28 ],
29 'sources': [
30 'src/crypto/asn1/asn1_test.cc',
31 '<@(boringssl_test_support_sources)',
32 ],
33 # TODO(davidben): Fix size_t truncations in BoringSSL.
34 # https://crbug.com/429039
35 'msvs_disabled_warnings': [ 4267, ],
36 },
37 {
10 'target_name': 'boringssl_base64_test', 38 'target_name': 'boringssl_base64_test',
11 'type': 'executable', 39 'type': 'executable',
12 'dependencies': [ 40 'dependencies': [
13 'boringssl.gyp:boringssl', 41 'boringssl.gyp:boringssl',
14 ], 42 ],
15 'sources': [ 43 'sources': [
16 'src/crypto/base64/base64_test.cc', 44 'src/crypto/base64/base64_test.cc',
17 '<@(boringssl_test_support_sources)', 45 '<@(boringssl_test_support_sources)',
18 ], 46 ],
19 # TODO(davidben): Fix size_t truncations in BoringSSL. 47 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ], 84 ],
57 'sources': [ 85 'sources': [
58 'src/crypto/bytestring/bytestring_test.cc', 86 'src/crypto/bytestring/bytestring_test.cc',
59 '<@(boringssl_test_support_sources)', 87 '<@(boringssl_test_support_sources)',
60 ], 88 ],
61 # TODO(davidben): Fix size_t truncations in BoringSSL. 89 # TODO(davidben): Fix size_t truncations in BoringSSL.
62 # https://crbug.com/429039 90 # https://crbug.com/429039
63 'msvs_disabled_warnings': [ 4267, ], 91 'msvs_disabled_warnings': [ 4267, ],
64 }, 92 },
65 { 93 {
94 'target_name': 'boringssl_chacha_test',
95 'type': 'executable',
96 'dependencies': [
97 'boringssl.gyp:boringssl',
98 ],
99 'sources': [
100 'src/crypto/chacha/chacha_test.cc',
101 '<@(boringssl_test_support_sources)',
102 ],
103 # TODO(davidben): Fix size_t truncations in BoringSSL.
104 # https://crbug.com/429039
105 'msvs_disabled_warnings': [ 4267, ],
106 },
107 {
66 'target_name': 'boringssl_aead_test', 108 'target_name': 'boringssl_aead_test',
67 'type': 'executable', 109 'type': 'executable',
68 'dependencies': [ 110 'dependencies': [
69 'boringssl.gyp:boringssl', 111 'boringssl.gyp:boringssl',
70 ], 112 ],
71 'sources': [ 113 'sources': [
72 'src/crypto/cipher/aead_test.cc', 114 'src/crypto/cipher/aead_test.cc',
73 '<@(boringssl_test_support_sources)', 115 '<@(boringssl_test_support_sources)',
74 ], 116 ],
75 # TODO(davidben): Fix size_t truncations in BoringSSL. 117 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ], 154 ],
113 'sources': [ 155 'sources': [
114 'src/crypto/constant_time_test.c', 156 'src/crypto/constant_time_test.c',
115 '<@(boringssl_test_support_sources)', 157 '<@(boringssl_test_support_sources)',
116 ], 158 ],
117 # TODO(davidben): Fix size_t truncations in BoringSSL. 159 # TODO(davidben): Fix size_t truncations in BoringSSL.
118 # https://crbug.com/429039 160 # https://crbug.com/429039
119 'msvs_disabled_warnings': [ 4267, ], 161 'msvs_disabled_warnings': [ 4267, ],
120 }, 162 },
121 { 163 {
164 'target_name': 'boringssl_ed25519_test',
165 'type': 'executable',
166 'dependencies': [
167 'boringssl.gyp:boringssl',
168 ],
169 'sources': [
170 'src/crypto/curve25519/ed25519_test.cc',
171 '<@(boringssl_test_support_sources)',
172 ],
173 # TODO(davidben): Fix size_t truncations in BoringSSL.
174 # https://crbug.com/429039
175 'msvs_disabled_warnings': [ 4267, ],
176 },
177 {
178 'target_name': 'boringssl_spake25519_test',
179 'type': 'executable',
180 'dependencies': [
181 'boringssl.gyp:boringssl',
182 ],
183 'sources': [
184 'src/crypto/curve25519/spake25519_test.cc',
185 '<@(boringssl_test_support_sources)',
186 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL.
188 # https://crbug.com/429039
189 'msvs_disabled_warnings': [ 4267, ],
190 },
191 {
192 'target_name': 'boringssl_x25519_test',
193 'type': 'executable',
194 'dependencies': [
195 'boringssl.gyp:boringssl',
196 ],
197 'sources': [
198 'src/crypto/curve25519/x25519_test.cc',
199 '<@(boringssl_test_support_sources)',
200 ],
201 # TODO(davidben): Fix size_t truncations in BoringSSL.
202 # https://crbug.com/429039
203 'msvs_disabled_warnings': [ 4267, ],
204 },
205 {
122 'target_name': 'boringssl_dh_test', 206 'target_name': 'boringssl_dh_test',
123 'type': 'executable', 207 'type': 'executable',
124 'dependencies': [ 208 'dependencies': [
125 'boringssl.gyp:boringssl', 209 'boringssl.gyp:boringssl',
126 ], 210 ],
127 'sources': [ 211 'sources': [
128 'src/crypto/dh/dh_test.cc', 212 'src/crypto/dh/dh_test.cc',
129 '<@(boringssl_test_support_sources)', 213 '<@(boringssl_test_support_sources)',
130 ], 214 ],
131 # TODO(davidben): Fix size_t truncations in BoringSSL. 215 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 ], 392 ],
309 'sources': [ 393 'sources': [
310 'src/crypto/modes/gcm_test.c', 394 'src/crypto/modes/gcm_test.c',
311 '<@(boringssl_test_support_sources)', 395 '<@(boringssl_test_support_sources)',
312 ], 396 ],
313 # TODO(davidben): Fix size_t truncations in BoringSSL. 397 # TODO(davidben): Fix size_t truncations in BoringSSL.
314 # https://crbug.com/429039 398 # https://crbug.com/429039
315 'msvs_disabled_warnings': [ 4267, ], 399 'msvs_disabled_warnings': [ 4267, ],
316 }, 400 },
317 { 401 {
402 'target_name': 'boringssl_newhope_statistical_test',
403 'type': 'executable',
404 'dependencies': [
405 'boringssl.gyp:boringssl',
406 ],
407 'sources': [
408 'src/crypto/newhope/newhope_statistical_test.cc',
409 '<@(boringssl_test_support_sources)',
410 ],
411 # TODO(davidben): Fix size_t truncations in BoringSSL.
412 # https://crbug.com/429039
413 'msvs_disabled_warnings': [ 4267, ],
414 },
415 {
416 'target_name': 'boringssl_newhope_test',
417 'type': 'executable',
418 'dependencies': [
419 'boringssl.gyp:boringssl',
420 ],
421 'sources': [
422 'src/crypto/newhope/newhope_test.cc',
423 '<@(boringssl_test_support_sources)',
424 ],
425 # TODO(davidben): Fix size_t truncations in BoringSSL.
426 # https://crbug.com/429039
427 'msvs_disabled_warnings': [ 4267, ],
428 },
429 {
430 'target_name': 'boringssl_newhope_vectors_test',
431 'type': 'executable',
432 'dependencies': [
433 'boringssl.gyp:boringssl',
434 ],
435 'sources': [
436 'src/crypto/newhope/newhope_vectors_test.cc',
437 '<@(boringssl_test_support_sources)',
438 ],
439 # TODO(davidben): Fix size_t truncations in BoringSSL.
440 # https://crbug.com/429039
441 'msvs_disabled_warnings': [ 4267, ],
442 },
443 {
444 'target_name': 'boringssl_obj_test',
445 'type': 'executable',
446 'dependencies': [
447 'boringssl.gyp:boringssl',
448 ],
449 'sources': [
450 'src/crypto/obj/obj_test.cc',
451 '<@(boringssl_test_support_sources)',
452 ],
453 # TODO(davidben): Fix size_t truncations in BoringSSL.
454 # https://crbug.com/429039
455 'msvs_disabled_warnings': [ 4267, ],
456 },
457 {
318 'target_name': 'boringssl_pkcs12_test', 458 'target_name': 'boringssl_pkcs12_test',
319 'type': 'executable', 459 'type': 'executable',
320 'dependencies': [ 460 'dependencies': [
321 'boringssl.gyp:boringssl', 461 'boringssl.gyp:boringssl',
322 ], 462 ],
323 'sources': [ 463 'sources': [
324 'src/crypto/pkcs8/pkcs12_test.cc', 464 'src/crypto/pkcs8/pkcs12_test.cc',
325 '<@(boringssl_test_support_sources)', 465 '<@(boringssl_test_support_sources)',
326 ], 466 ],
327 # TODO(davidben): Fix size_t truncations in BoringSSL. 467 # TODO(davidben): Fix size_t truncations in BoringSSL.
328 # https://crbug.com/429039 468 # https://crbug.com/429039
329 'msvs_disabled_warnings': [ 4267, ], 469 'msvs_disabled_warnings': [ 4267, ],
330 }, 470 },
331 { 471 {
472 'target_name': 'boringssl_pkcs8_test',
473 'type': 'executable',
474 'dependencies': [
475 'boringssl.gyp:boringssl',
476 ],
477 'sources': [
478 'src/crypto/pkcs8/pkcs8_test.cc',
479 '<@(boringssl_test_support_sources)',
480 ],
481 # TODO(davidben): Fix size_t truncations in BoringSSL.
482 # https://crbug.com/429039
483 'msvs_disabled_warnings': [ 4267, ],
484 },
485 {
486 'target_name': 'boringssl_poly1305_test',
487 'type': 'executable',
488 'dependencies': [
489 'boringssl.gyp:boringssl',
490 ],
491 'sources': [
492 'src/crypto/poly1305/poly1305_test.cc',
493 '<@(boringssl_test_support_sources)',
494 ],
495 # TODO(davidben): Fix size_t truncations in BoringSSL.
496 # https://crbug.com/429039
497 'msvs_disabled_warnings': [ 4267, ],
498 },
499 {
332 'target_name': 'boringssl_refcount_test', 500 'target_name': 'boringssl_refcount_test',
333 'type': 'executable', 501 'type': 'executable',
334 'dependencies': [ 502 'dependencies': [
335 'boringssl.gyp:boringssl', 503 'boringssl.gyp:boringssl',
336 ], 504 ],
337 'sources': [ 505 'sources': [
338 'src/crypto/refcount_test.c', 506 'src/crypto/refcount_test.c',
339 '<@(boringssl_test_support_sources)', 507 '<@(boringssl_test_support_sources)',
340 ], 508 ],
341 # TODO(davidben): Fix size_t truncations in BoringSSL. 509 # TODO(davidben): Fix size_t truncations in BoringSSL.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 ], 546 ],
379 'sources': [ 547 'sources': [
380 'src/crypto/x509/pkcs7_test.c', 548 'src/crypto/x509/pkcs7_test.c',
381 '<@(boringssl_test_support_sources)', 549 '<@(boringssl_test_support_sources)',
382 ], 550 ],
383 # TODO(davidben): Fix size_t truncations in BoringSSL. 551 # TODO(davidben): Fix size_t truncations in BoringSSL.
384 # https://crbug.com/429039 552 # https://crbug.com/429039
385 'msvs_disabled_warnings': [ 4267, ], 553 'msvs_disabled_warnings': [ 4267, ],
386 }, 554 },
387 { 555 {
388 'target_name': 'boringssl_tab_test', 556 'target_name': 'boringssl_x509_test',
389 'type': 'executable', 557 'type': 'executable',
390 'dependencies': [ 558 'dependencies': [
391 'boringssl.gyp:boringssl', 559 'boringssl.gyp:boringssl',
392 ], 560 ],
393 'sources': [ 561 'sources': [
394 'src/crypto/x509v3/tab_test.c', 562 'src/crypto/x509/x509_test.cc',
395 '<@(boringssl_test_support_sources)', 563 '<@(boringssl_test_support_sources)',
396 ], 564 ],
397 # TODO(davidben): Fix size_t truncations in BoringSSL. 565 # TODO(davidben): Fix size_t truncations in BoringSSL.
398 # https://crbug.com/429039 566 # https://crbug.com/429039
399 'msvs_disabled_warnings': [ 4267, ], 567 'msvs_disabled_warnings': [ 4267, ],
400 }, 568 },
401 { 569 {
402 'target_name': 'boringssl_v3name_test', 570 'target_name': 'boringssl_tab_test',
403 'type': 'executable', 571 'type': 'executable',
404 'dependencies': [ 572 'dependencies': [
405 'boringssl.gyp:boringssl', 573 'boringssl.gyp:boringssl',
406 ], 574 ],
407 'sources': [ 575 'sources': [
408 'src/crypto/x509v3/v3name_test.c', 576 'src/crypto/x509v3/tab_test.c',
409 '<@(boringssl_test_support_sources)', 577 '<@(boringssl_test_support_sources)',
410 ], 578 ],
411 # TODO(davidben): Fix size_t truncations in BoringSSL. 579 # TODO(davidben): Fix size_t truncations in BoringSSL.
412 # https://crbug.com/429039 580 # https://crbug.com/429039
413 'msvs_disabled_warnings': [ 4267, ], 581 'msvs_disabled_warnings': [ 4267, ],
414 }, 582 },
415 { 583 {
416 'target_name': 'boringssl_pqueue_test', 584 'target_name': 'boringssl_v3name_test',
417 'type': 'executable', 585 'type': 'executable',
418 'dependencies': [ 586 'dependencies': [
419 'boringssl.gyp:boringssl', 587 'boringssl.gyp:boringssl',
420 ], 588 ],
421 'sources': [ 589 'sources': [
422 'src/ssl/pqueue/pqueue_test.c', 590 'src/crypto/x509v3/v3name_test.c',
423 '<@(boringssl_test_support_sources)', 591 '<@(boringssl_test_support_sources)',
424 ], 592 ],
425 # TODO(davidben): Fix size_t truncations in BoringSSL. 593 # TODO(davidben): Fix size_t truncations in BoringSSL.
426 # https://crbug.com/429039 594 # https://crbug.com/429039
427 'msvs_disabled_warnings': [ 4267, ], 595 'msvs_disabled_warnings': [ 4267, ],
428 }, 596 },
429 { 597 {
430 'target_name': 'boringssl_ssl_test', 598 'target_name': 'boringssl_ssl_test',
431 'type': 'executable', 599 'type': 'executable',
432 'dependencies': [ 600 'dependencies': [
433 'boringssl.gyp:boringssl', 601 'boringssl.gyp:boringssl',
434 ], 602 ],
435 'sources': [ 603 'sources': [
436 'src/ssl/ssl_test.cc', 604 'src/ssl/ssl_test.cc',
437 '<@(boringssl_test_support_sources)', 605 '<@(boringssl_test_support_sources)',
438 ], 606 ],
439 # TODO(davidben): Fix size_t truncations in BoringSSL. 607 # TODO(davidben): Fix size_t truncations in BoringSSL.
440 # https://crbug.com/429039 608 # https://crbug.com/429039
441 'msvs_disabled_warnings': [ 4267, ], 609 'msvs_disabled_warnings': [ 4267, ],
442 }, 610 },
443 ], 611 ],
444 'variables': { 612 'variables': {
445 'boringssl_test_support_sources': [ 613 'boringssl_test_support_sources': [
446 'src/crypto/test/file_test.cc', 614 'src/crypto/test/file_test.cc',
615 'src/crypto/test/file_test.h',
447 'src/crypto/test/malloc.cc', 616 'src/crypto/test/malloc.cc',
617 'src/crypto/test/scoped_types.h',
618 'src/crypto/test/test_util.cc',
619 'src/crypto/test/test_util.h',
620 'src/ssl/test/async_bio.h',
621 'src/ssl/test/packeted_bio.h',
622 'src/ssl/test/scoped_types.h',
623 'src/ssl/test/test_config.h',
448 ], 624 ],
449 'boringssl_test_targets': [ 625 'boringssl_test_targets': [
450 'boringssl_aead_test', 626 'boringssl_aead_test',
627 'boringssl_aes_test',
628 'boringssl_asn1_test',
451 'boringssl_base64_test', 629 'boringssl_base64_test',
452 'boringssl_bio_test', 630 'boringssl_bio_test',
453 'boringssl_bn_test', 631 'boringssl_bn_test',
454 'boringssl_bytestring_test', 632 'boringssl_bytestring_test',
633 'boringssl_chacha_test',
455 'boringssl_cipher_test', 634 'boringssl_cipher_test',
456 'boringssl_cmac_test', 635 'boringssl_cmac_test',
457 'boringssl_constant_time_test', 636 'boringssl_constant_time_test',
458 'boringssl_dh_test', 637 'boringssl_dh_test',
459 'boringssl_digest_test', 638 'boringssl_digest_test',
460 'boringssl_dsa_test', 639 'boringssl_dsa_test',
461 'boringssl_ec_test', 640 'boringssl_ec_test',
462 'boringssl_ecdsa_test', 641 'boringssl_ecdsa_test',
642 'boringssl_ed25519_test',
463 'boringssl_err_test', 643 'boringssl_err_test',
464 'boringssl_evp_extra_test', 644 'boringssl_evp_extra_test',
465 'boringssl_evp_test', 645 'boringssl_evp_test',
466 'boringssl_example_mul', 646 'boringssl_example_mul',
467 'boringssl_gcm_test', 647 'boringssl_gcm_test',
468 'boringssl_hkdf_test', 648 'boringssl_hkdf_test',
469 'boringssl_hmac_test', 649 'boringssl_hmac_test',
470 'boringssl_lhash_test', 650 'boringssl_lhash_test',
651 'boringssl_newhope_statistical_test',
652 'boringssl_newhope_test',
653 'boringssl_newhope_vectors_test',
654 'boringssl_obj_test',
471 'boringssl_pbkdf_test', 655 'boringssl_pbkdf_test',
472 'boringssl_pkcs12_test', 656 'boringssl_pkcs12_test',
473 'boringssl_pkcs7_test', 657 'boringssl_pkcs7_test',
474 'boringssl_pqueue_test', 658 'boringssl_pkcs8_test',
659 'boringssl_poly1305_test',
475 'boringssl_refcount_test', 660 'boringssl_refcount_test',
476 'boringssl_rsa_test', 661 'boringssl_rsa_test',
662 'boringssl_spake25519_test',
477 'boringssl_ssl_test', 663 'boringssl_ssl_test',
478 'boringssl_tab_test', 664 'boringssl_tab_test',
479 'boringssl_thread_test', 665 'boringssl_thread_test',
480 'boringssl_v3name_test', 666 'boringssl_v3name_test',
667 'boringssl_x25519_test',
668 'boringssl_x509_test',
481 ], 669 ],
482 } 670 }
483 } 671 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl_dart.gyp ('k') | third_party/boringssl/err_data.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698