Index: third_party/boringssl/boringssl_tests.gypi |
diff --git a/third_party/boringssl/boringssl_tests.gypi b/third_party/boringssl/boringssl_tests.gypi |
index 9413d8c9334786f0676862aaf1c63b30c6726d7b..a7612e2519a902a3f2fe0320bbbd3947f10bbaf6 100644 |
--- a/third_party/boringssl/boringssl_tests.gypi |
+++ b/third_party/boringssl/boringssl_tests.gypi |
@@ -7,6 +7,34 @@ |
{ |
'targets': [ |
{ |
+ 'target_name': 'boringssl_aes_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/aes/aes_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_asn1_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/asn1/asn1_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
'target_name': 'boringssl_base64_test', |
'type': 'executable', |
'dependencies': [ |
@@ -119,6 +147,34 @@ |
'msvs_disabled_warnings': [ 4267, ], |
}, |
{ |
+ 'target_name': 'boringssl_ed25519_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/curve25519/ed25519_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_x25519_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/curve25519/x25519_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
'target_name': 'boringssl_dh_test', |
'type': 'executable', |
'dependencies': [ |
@@ -329,6 +385,34 @@ |
'msvs_disabled_warnings': [ 4267, ], |
}, |
{ |
+ 'target_name': 'boringssl_pkcs8_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/pkcs8/pkcs8_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_poly1305_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/poly1305/poly1305_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
'target_name': 'boringssl_refcount_test', |
'type': 'executable', |
'dependencies': [ |
@@ -385,6 +469,20 @@ |
'msvs_disabled_warnings': [ 4267, ], |
}, |
{ |
+ 'target_name': 'boringssl_x509_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl.gyp:boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/x509/x509_test.cc', |
+ '<@(boringssl_test_support_sources)', |
+ ], |
+ # TODO(davidben): Fix size_t truncations in BoringSSL. |
+ # https://crbug.com/429039 |
+ 'msvs_disabled_warnings': [ 4267, ], |
+ }, |
+ { |
'target_name': 'boringssl_tab_test', |
'type': 'executable', |
'dependencies': [ |
@@ -445,9 +543,12 @@ |
'boringssl_test_support_sources': [ |
'src/crypto/test/file_test.cc', |
'src/crypto/test/malloc.cc', |
+ 'src/crypto/test/test_util.cc', |
], |
'boringssl_test_targets': [ |
'boringssl_aead_test', |
+ 'boringssl_aes_test', |
+ 'boringssl_asn1_test', |
'boringssl_base64_test', |
'boringssl_bio_test', |
'boringssl_bn_test', |
@@ -460,6 +561,7 @@ |
'boringssl_dsa_test', |
'boringssl_ec_test', |
'boringssl_ecdsa_test', |
+ 'boringssl_ed25519_test', |
'boringssl_err_test', |
'boringssl_evp_extra_test', |
'boringssl_evp_test', |
@@ -471,6 +573,8 @@ |
'boringssl_pbkdf_test', |
'boringssl_pkcs12_test', |
'boringssl_pkcs7_test', |
+ 'boringssl_pkcs8_test', |
+ 'boringssl_poly1305_test', |
'boringssl_pqueue_test', |
'boringssl_refcount_test', |
'boringssl_rsa_test', |
@@ -478,6 +582,8 @@ |
'boringssl_tab_test', |
'boringssl_thread_test', |
'boringssl_v3name_test', |
+ 'boringssl_x25519_test', |
+ 'boringssl_x509_test', |
], |
} |
} |