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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 ], | 392 ], |
393 'sources': [ | 393 'sources': [ |
394 'src/crypto/modes/gcm_test.c', | 394 'src/crypto/modes/gcm_test.c', |
395 '<@(boringssl_test_support_sources)', | 395 '<@(boringssl_test_support_sources)', |
396 ], | 396 ], |
397 # TODO(davidben): Fix size_t truncations in BoringSSL. | 397 # TODO(davidben): Fix size_t truncations in BoringSSL. |
398 # https://crbug.com/429039 | 398 # https://crbug.com/429039 |
399 'msvs_disabled_warnings': [ 4267, ], | 399 'msvs_disabled_warnings': [ 4267, ], |
400 }, | 400 }, |
401 { | 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 { |
402 'target_name': 'boringssl_newhope_test', | 416 'target_name': 'boringssl_newhope_test', |
403 'type': 'executable', | 417 'type': 'executable', |
404 'dependencies': [ | 418 'dependencies': [ |
405 'boringssl.gyp:boringssl', | 419 'boringssl.gyp:boringssl', |
406 ], | 420 ], |
407 'sources': [ | 421 'sources': [ |
408 'src/crypto/newhope/newhope_test.c', | 422 'src/crypto/newhope/newhope_test.c', |
409 '<@(boringssl_test_support_sources)', | 423 '<@(boringssl_test_support_sources)', |
410 ], | 424 ], |
411 # TODO(davidben): Fix size_t truncations in BoringSSL. | 425 # TODO(davidben): Fix size_t truncations in BoringSSL. |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
634 'boringssl_ecdsa_test', | 648 'boringssl_ecdsa_test', |
635 'boringssl_ed25519_test', | 649 'boringssl_ed25519_test', |
636 'boringssl_err_test', | 650 'boringssl_err_test', |
637 'boringssl_evp_extra_test', | 651 'boringssl_evp_extra_test', |
638 'boringssl_evp_test', | 652 'boringssl_evp_test', |
639 'boringssl_example_mul', | 653 'boringssl_example_mul', |
640 'boringssl_gcm_test', | 654 'boringssl_gcm_test', |
641 'boringssl_hkdf_test', | 655 'boringssl_hkdf_test', |
642 'boringssl_hmac_test', | 656 'boringssl_hmac_test', |
643 'boringssl_lhash_test', | 657 'boringssl_lhash_test', |
| 658 'boringssl_newhope_statistical_test', |
644 'boringssl_newhope_test', | 659 'boringssl_newhope_test', |
645 'boringssl_newhope_vectors_test', | 660 'boringssl_newhope_vectors_test', |
646 'boringssl_obj_test', | 661 'boringssl_obj_test', |
647 'boringssl_pbkdf_test', | 662 'boringssl_pbkdf_test', |
648 'boringssl_pkcs12_test', | 663 'boringssl_pkcs12_test', |
649 'boringssl_pkcs7_test', | 664 'boringssl_pkcs7_test', |
650 'boringssl_pkcs8_test', | 665 'boringssl_pkcs8_test', |
651 'boringssl_poly1305_test', | 666 'boringssl_poly1305_test', |
652 'boringssl_pqueue_test', | 667 'boringssl_pqueue_test', |
653 'boringssl_refcount_test', | 668 'boringssl_refcount_test', |
654 'boringssl_rsa_test', | 669 'boringssl_rsa_test', |
655 'boringssl_spake25519_test', | 670 'boringssl_spake25519_test', |
656 'boringssl_ssl_test', | 671 'boringssl_ssl_test', |
657 'boringssl_tab_test', | 672 'boringssl_tab_test', |
658 'boringssl_thread_test', | 673 'boringssl_thread_test', |
659 'boringssl_v3name_test', | 674 'boringssl_v3name_test', |
660 'boringssl_x25519_test', | 675 'boringssl_x25519_test', |
661 'boringssl_x509_test', | 676 'boringssl_x509_test', |
662 ], | 677 ], |
663 } | 678 } |
664 } | 679 } |
OLD | NEW |