Index: third_party/boringssl/boringssl_tests.gypi |
diff --git a/third_party/boringssl/boringssl_tests.gypi b/third_party/boringssl/boringssl_tests.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..788c4c53608baf0f01381be999262bd7d2e91e55 |
--- /dev/null |
+++ b/third_party/boringssl/boringssl_tests.gypi |
@@ -0,0 +1,201 @@ |
+# Copyright (c) 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+# This file is created by update_gypi_and_asm.py. Do not edit manually. |
+ |
+{ |
+ 'targets': [ |
+ { |
+ 'target_name': 'boringssl_sha1_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/sha/sha1_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_gcm_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/modes/gcm_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_err_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/err/err_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_dsa_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/dsa/dsa_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_dh_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/dh/dh_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_aead_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/cipher/aead_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_cipher_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/cipher/cipher_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_hmac_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/hmac/hmac_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_lhash_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/lhash/lhash_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_bio_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/bio/bio_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_md5_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/md5/md5_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_rsa_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/rsa/rsa_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_example_sign', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/evp/example_sign.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_bn_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/bn/bn_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_bytestring_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/bytestring/bytestring_test.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_example_mul', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/ec/example_mul.c', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'boringssl_ecdsa_test', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ 'boringssl', |
+ ], |
+ 'sources': [ |
+ 'src/crypto/ecdsa/ecdsa_test.c', |
+ ], |
+ }, |
+ ], |
+ 'variables': { |
+ 'boringssl_test_targets': [ |
+ 'boringssl_aead_test', |
+ 'boringssl_bio_test', |
+ 'boringssl_bn_test', |
+ 'boringssl_bytestring_test', |
+ 'boringssl_cipher_test', |
+ 'boringssl_dh_test', |
+ 'boringssl_dsa_test', |
+ 'boringssl_ecdsa_test', |
+ 'boringssl_err_test', |
+ 'boringssl_example_mul', |
+ 'boringssl_example_sign', |
+ 'boringssl_gcm_test', |
+ 'boringssl_hmac_test', |
+ 'boringssl_lhash_test', |
+ 'boringssl_md5_test', |
+ 'boringssl_rsa_test', |
+ 'boringssl_sha1_test', |
+ ], |
+ } |
+} |