Index: third_party/boringssl/boringssl_tests.gypi |
diff --git a/third_party/boringssl/boringssl_tests.gypi b/third_party/boringssl/boringssl_tests.gypi |
index a8642478bc8f897355ffdf8f0b5f92921bd94217..ebf81c037a4fd80c1b5c499ff73fd4eab0a2cb1b 100644 |
--- a/third_party/boringssl/boringssl_tests.gypi |
+++ b/third_party/boringssl/boringssl_tests.gypi |
@@ -133,6 +133,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': [ |
@@ -504,6 +532,7 @@ |
'boringssl_dsa_test', |
'boringssl_ec_test', |
'boringssl_ecdsa_test', |
+ 'boringssl_ed25519_test', |
'boringssl_err_test', |
'boringssl_evp_extra_test', |
'boringssl_evp_test', |
@@ -524,6 +553,7 @@ |
'boringssl_tab_test', |
'boringssl_thread_test', |
'boringssl_v3name_test', |
+ 'boringssl_x25519_test', |
], |
} |
} |