OLD | NEW |
1 # Copyright (c) 2016 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', | 10 'target_name': 'boringssl_aes_test', |
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
588 ], | 588 ], |
589 'sources': [ | 589 'sources': [ |
590 'src/crypto/x509v3/v3name_test.c', | 590 'src/crypto/x509v3/v3name_test.c', |
591 '<@(boringssl_test_support_sources)', | 591 '<@(boringssl_test_support_sources)', |
592 ], | 592 ], |
593 # TODO(davidben): Fix size_t truncations in BoringSSL. | 593 # TODO(davidben): Fix size_t truncations in BoringSSL. |
594 # https://crbug.com/429039 | 594 # https://crbug.com/429039 |
595 'msvs_disabled_warnings': [ 4267, ], | 595 'msvs_disabled_warnings': [ 4267, ], |
596 }, | 596 }, |
597 { | 597 { |
598 'target_name': 'boringssl_pqueue_test', | |
599 'type': 'executable', | |
600 'dependencies': [ | |
601 'boringssl.gyp:boringssl', | |
602 ], | |
603 'sources': [ | |
604 'src/ssl/pqueue/pqueue_test.c', | |
605 '<@(boringssl_test_support_sources)', | |
606 ], | |
607 # TODO(davidben): Fix size_t truncations in BoringSSL. | |
608 # https://crbug.com/429039 | |
609 'msvs_disabled_warnings': [ 4267, ], | |
610 }, | |
611 { | |
612 'target_name': 'boringssl_ssl_test', | 598 'target_name': 'boringssl_ssl_test', |
613 'type': 'executable', | 599 'type': 'executable', |
614 'dependencies': [ | 600 'dependencies': [ |
615 'boringssl.gyp:boringssl', | 601 'boringssl.gyp:boringssl', |
616 ], | 602 ], |
617 'sources': [ | 603 'sources': [ |
618 'src/ssl/ssl_test.cc', | 604 'src/ssl/ssl_test.cc', |
619 '<@(boringssl_test_support_sources)', | 605 '<@(boringssl_test_support_sources)', |
620 ], | 606 ], |
621 # TODO(davidben): Fix size_t truncations in BoringSSL. | 607 # TODO(davidben): Fix size_t truncations in BoringSSL. |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
664 'boringssl_lhash_test', | 650 'boringssl_lhash_test', |
665 'boringssl_newhope_statistical_test', | 651 'boringssl_newhope_statistical_test', |
666 'boringssl_newhope_test', | 652 'boringssl_newhope_test', |
667 'boringssl_newhope_vectors_test', | 653 'boringssl_newhope_vectors_test', |
668 'boringssl_obj_test', | 654 'boringssl_obj_test', |
669 'boringssl_pbkdf_test', | 655 'boringssl_pbkdf_test', |
670 'boringssl_pkcs12_test', | 656 'boringssl_pkcs12_test', |
671 'boringssl_pkcs7_test', | 657 'boringssl_pkcs7_test', |
672 'boringssl_pkcs8_test', | 658 'boringssl_pkcs8_test', |
673 'boringssl_poly1305_test', | 659 'boringssl_poly1305_test', |
674 'boringssl_pqueue_test', | |
675 'boringssl_refcount_test', | 660 'boringssl_refcount_test', |
676 'boringssl_rsa_test', | 661 'boringssl_rsa_test', |
677 'boringssl_spake25519_test', | 662 'boringssl_spake25519_test', |
678 'boringssl_ssl_test', | 663 'boringssl_ssl_test', |
679 'boringssl_tab_test', | 664 'boringssl_tab_test', |
680 'boringssl_thread_test', | 665 'boringssl_thread_test', |
681 'boringssl_v3name_test', | 666 'boringssl_v3name_test', |
682 'boringssl_x25519_test', | 667 'boringssl_x25519_test', |
683 'boringssl_x509_test', | 668 'boringssl_x509_test', |
684 ], | 669 ], |
685 } | 670 } |
686 } | 671 } |
OLD | NEW |