Last active
October 25, 2018 11:08
-
-
Save nikhedonia/84d77f325d5c18eabacc410e4963a97b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def merge_dicts(x, y): | |
z = x.copy() | |
z.update(y) | |
return z | |
cxx_library( | |
name = "apps", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DOPENSSL_USE_NODELETE","-DL_ENDIAN","-DOPENSSL_PIC","-DOPENSSL_CPUID_OBJ","-DOPENSSL_IA32_SSE2","-DOPENSSL_BN_ASM_MONT","-DOPENSSL_BN_ASM_MONT5","-DOPENSSL_BN_ASM_GF2m","-DSHA1_ASM","-DSHA256_ASM","-DSHA512_ASM","-DKECCAK1600_ASM","-DRC4_ASM","-DMD5_ASM","-DAES_ASM","-DVPAES_ASM","-DBSAES_ASM","-DGHASH_ASM","-DECP_NISTZ256_ASM","-DX25519_ASM","-DPADLOCK_ASM","-DPOLY1305_ASM","-DOPENSSLDIR=\"/usr/local/ssl\"","-DENGINESDIR=\"/usr/local/lib/engines-1.1\"","-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
("include", "**/*.h"), | |
("", "**/*.h") | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["apps/app_rand.c","apps/apps.c","apps/bf_prefix.c","apps/opt.c","apps/s_cb.c","apps/s_socket.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack"], | |
exported_linker_flags = ["-pthread"], | |
deps = [], | |
visibility = [] | |
) | |
cxx_library( | |
name = "testutil", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DOPENSSL_USE_NODELETE","-DL_ENDIAN","-DOPENSSL_PIC","-DOPENSSL_CPUID_OBJ","-DOPENSSL_IA32_SSE2","-DOPENSSL_BN_ASM_MONT","-DOPENSSL_BN_ASM_MONT5","-DOPENSSL_BN_ASM_GF2m","-DSHA1_ASM","-DSHA256_ASM","-DSHA512_ASM","-DKECCAK1600_ASM","-DRC4_ASM","-DMD5_ASM","-DAES_ASM","-DVPAES_ASM","-DBSAES_ASM","-DGHASH_ASM","-DECP_NISTZ256_ASM","-DX25519_ASM","-DPADLOCK_ASM","-DPOLY1305_ASM","-DOPENSSLDIR=\"/usr/local/ssl\"","-DENGINESDIR=\"/usr/local/lib/engines-1.1\"","-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
("include", "**/*.h") | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["test/testutil/*.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack"], | |
exported_linker_flags = ["-pthread"], | |
deps = [], | |
visibility = [] | |
) | |
cxx_library( | |
name = "crypto", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DOPENSSL_USE_NODELETE","-DL_ENDIAN","-DOPENSSL_PIC","-DOPENSSL_CPUID_OBJ","-DOPENSSL_IA32_SSE2","-DOPENSSL_BN_ASM_MONT","-DOPENSSL_BN_ASM_MONT5","-DOPENSSL_BN_ASM_GF2m","-DSHA1_ASM","-DSHA256_ASM","-DSHA512_ASM","-DKECCAK1600_ASM","-DRC4_ASM","-DMD5_ASM","-DAES_ASM","-DVPAES_ASM","-DBSAES_ASM","-DGHASH_ASM","-DECP_NISTZ256_ASM","-DX25519_ASM","-DPADLOCK_ASM","-DPOLY1305_ASM","-DOPENSSLDIR=\"/usr/local/ssl\"","-DENGINESDIR=\"/usr/local/lib/engines-1.1\"","-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
("crypto", "**/*.h"), | |
("crypto", "**/*.c"), | |
("include", "**/*.h"), | |
("crypto/include", "**/*.h"), | |
("crypto/ec/curve448", "**/*.h"), | |
("crypto/ec/curve448/arch_32", "**/*.h"), | |
("crypto/modes", "**/*.h"), | |
("", "**/*.h"), | |
("", "**/*.c") | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'crypto/include/internal/bn_conf.h': ':gen-crypto-include-internal-bn_conf-h', | |
'include/internal/bn_conf.h': ':gen-crypto-include-internal-bn_conf-h', | |
'internal/bn_conf.h': ':gen-crypto-include-internal-bn_conf-h', | |
'crypto/buildinf.h': ':gen-crypto-buildinf-h', | |
'buildinf.h': ':gen-crypto-buildinf-h', | |
'crypto/include/internal/dso_conf.h': ':gen-crypto-include-internal-dso_conf-h', | |
'include/internal/dso_conf.h': ':gen-crypto-include-internal-dso_conf-h', | |
'internal/dso_conf.h': ':gen-crypto-include-internal-dso_conf-h', | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["crypto/**/*.s","crypto/**/*.c"], | |
excludes = ["crypto/aes/aes_cbc.c","crypto/aes/aes_core.c","crypto/aes/aes_x86core.c","crypto/armcap.c","crypto/bn/bn_asm.c","crypto/camellia/camellia.c","crypto/camellia/cmll_cbc.c","crypto/chacha/chacha_enc.c","crypto/des/ncbc_enc.c","crypto/dllmain.c","crypto/ec/ecp_nistz256_table.c","crypto/engine/eng_devcrypto.c","crypto/LPdir_nyi.c","crypto/LPdir_unix.c","crypto/LPdir_vms.c","crypto/LPdir_win.c","crypto/LPdir_win32.c","crypto/LPdir_wince.c","crypto/md2/md2_dgst.c","crypto/md2/md2_one.c","crypto/mem_clr.c","crypto/poly1305/poly1305_base2_44.c","crypto/poly1305/poly1305_ieee754.c","crypto/ppccap.c","crypto/rc4/rc4_enc.c","crypto/rc4/rc4_skey.c","crypto/rc5/rc5_ecb.c","crypto/rc5/rc5_enc.c","crypto/rc5/rc5_skey.c","crypto/rc5/rc5cfb64.c","crypto/rc5/rc5ofb64.c","crypto/s390xcap.c","crypto/sha/keccak1600.c","crypto/sparcv9cap.c","crypto/whrlpool/wp_block.c"], | |
include_dotfiles=False | |
) + [ | |
':gen-crypto-aes-aes-x86_64-s', | |
':gen-crypto-aes-aesni-mb-x86_64-s', | |
':gen-crypto-aes-aesni-sha1-x86_64-s', | |
':gen-crypto-aes-aesni-sha256-x86_64-s', | |
':gen-crypto-aes-aesni-x86_64-s', | |
':gen-crypto-aes-bsaes-x86_64-s', | |
':gen-crypto-aes-vpaes-x86_64-s', | |
':gen-crypto-bn-rsaz-avx2-s', | |
':gen-crypto-bn-rsaz-x86_64-s', | |
':gen-crypto-bn-x86_64-gf2m-s', | |
':gen-crypto-bn-x86_64-mont-s', | |
':gen-crypto-bn-x86_64-mont5-s', | |
':gen-crypto-camellia-cmll-x86_64-s', | |
':gen-crypto-chacha-chacha-x86_64-s', | |
':gen-crypto-ec-ecp_nistz256-x86_64-s', | |
':gen-crypto-ec-x25519-x86_64-s', | |
':gen-crypto-md5-md5-x86_64-s', | |
':gen-crypto-modes-aesni-gcm-x86_64-s', | |
':gen-crypto-modes-ghash-x86_64-s', | |
':gen-crypto-poly1305-poly1305-x86_64-s', | |
':gen-crypto-rc4-rc4-md5-x86_64-s', | |
':gen-crypto-rc4-rc4-x86_64-s', | |
':gen-crypto-sha-keccak1600-x86_64-s', | |
':gen-crypto-sha-sha1-mb-x86_64-s', | |
':gen-crypto-sha-sha1-x86_64-s', | |
':gen-crypto-sha-sha256-mb-x86_64-s', | |
':gen-crypto-sha-sha256-x86_64-s', | |
':gen-crypto-sha-sha512-x86_64-s', | |
':gen-crypto-whrlpool-wp-x86_64-s', | |
':gen-crypto-x86_64cpuid-s', | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [], | |
visibility = [] | |
) | |
cxx_library( | |
name = "ssl", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DOPENSSL_USE_NODELETE","-DL_ENDIAN","-DOPENSSL_PIC","-DOPENSSL_CPUID_OBJ","-DOPENSSL_IA32_SSE2","-DOPENSSL_BN_ASM_MONT","-DOPENSSL_BN_ASM_MONT5","-DOPENSSL_BN_ASM_GF2m","-DSHA1_ASM","-DSHA256_ASM","-DSHA512_ASM","-DKECCAK1600_ASM","-DRC4_ASM","-DMD5_ASM","-DAES_ASM","-DVPAES_ASM","-DBSAES_ASM","-DGHASH_ASM","-DECP_NISTZ256_ASM","-DX25519_ASM","-DPADLOCK_ASM","-DPOLY1305_ASM","-DOPENSSLDIR=\"/usr/local/ssl\"","-DENGINESDIR=\"/usr/local/lib/engines-1.1\"","-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["ssl/**/*.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_library( | |
name = "afalg", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["engines/e_afalg.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_library( | |
name = "capi", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["engines/e_capi.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_library( | |
name = "dasync", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["engines/e_dasync.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_library( | |
name = "ossltest", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["engines/e_ossltest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_library( | |
name = "padlock", | |
header_namespace= '', | |
compiler_flags = ["-fPIC","-m64"], | |
preprocessor_flags = ["-DNDEBUG"], | |
exported_headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
headers = merge_dicts(subdir_glob([ | |
]), { | |
}), | |
srcs = glob( | |
["engines/e_padlock-x86_64.s","engines/e_padlock.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-engines-e_padlock-x86_64-s', | |
], | |
linker_flags = ["-Wl,-znodelete","-Wl,-Bsymbolic","-Wa,--noexecstack"], | |
exported_linker_flags = ["-L.","-pthread","-ldl"], | |
deps = [":crypto"], | |
visibility = [] | |
) | |
cxx_binary( | |
name = "exe-buildtest_ct", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ct-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_des", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_des-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_dh", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_dh-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_dsa", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_dsa-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_dtls1", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_dtls1-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_e_os2", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_e_os2-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ebcdic", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ebcdic-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ec", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ec-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ecdh", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ecdh-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ecdsa", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ecdsa-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_engine", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_engine-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_evp", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_evp-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_hmac", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_hmac-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_idea", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_idea-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_kdf", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_kdf-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_lhash", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_lhash-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_md4", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_md4-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_md5", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_md5-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_mdc2", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_mdc2-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_modes", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_modes-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_obj_mac", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_obj_mac-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_objects", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_objects-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ocsp", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ocsp-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_opensslv", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_opensslv-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ossl_typ", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ossl_typ-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_pem", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_pem-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_pem2", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_pem2-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_pkcs12", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_pkcs12-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_pkcs7", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_pkcs7-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_rand", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_rand-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_rand_drbg", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_rand_drbg-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_rc2", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_rc2-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_rc4", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_rc4-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ripemd", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ripemd-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_rsa", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_rsa-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_safestack", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_safestack-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_seed", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_seed-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_sha", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_sha-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_srp", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_srp-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_srtp", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_srtp-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ssl", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ssl-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ssl2", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ssl2-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_stack", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_stack-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_store", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_store-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_symhacks", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_symhacks-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_tls1", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_tls1-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ts", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ts-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_txt_db", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_txt_db-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_ui", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_ui-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_whrlpool", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_whrlpool-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-pemtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/pemtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-pkey_meth_kdf_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/pkey_meth_kdf_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-pkey_meth_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/pkey_meth_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-poly1305_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/poly1305_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rc2test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rc2test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rc4test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rc4test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rc5test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rc5test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rdrand_sanitytest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rdrand_sanitytest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-recordlentest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/recordlentest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rsa_mp_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rsa_mp_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-rsa_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/rsa_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sanitytest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sanitytest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-secmemtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/secmemtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-servername_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/servername_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-shloadtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'internal/dso_conf.h': ':gen-crypto-include-internal-dso_conf-h', | |
}), | |
srcs = glob( | |
["test/shlibloadtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-siphash_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/siphash_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sm2_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sm2_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sm4_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sm4_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-srptest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/srptest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ssl_cert_table_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ssl_cert_table_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ssl_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/handshake_helper.c","test/ssl_test.c","test/ssl_test_ctx.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ssl_test_ctx_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ssl_test_ctx.c","test/ssl_test_ctx_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sslapitest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sslapitest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sslbuffertest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sslbuffertest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sslcorrupttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sslcorrupttest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-dtlsv1listentest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/dtlsv1listentest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ecdsatest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ecdsatest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ecstresstest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ecstresstest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ectest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ectest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-enginetest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/enginetest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-errtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/errtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-evp_extra_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/evp_extra_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-evp_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/evp_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-exdatatest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/exdatatest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-exptest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/exptest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-fatalerrtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/fatalerrtest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-gmdifftest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/gmdifftest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-gosttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/gosttest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-hmactest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/hmactest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ideatest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ideatest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-igetest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/igetest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-lhash_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/lhash_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-md2test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/md2test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-mdc2_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/mdc2_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-mdc2test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/mdc2test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-memleaktest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/memleaktest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-modes_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/modes_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ocspapitest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ocspapitest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-packettest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/packettest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-pbelutest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/pbelutest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asn1_time_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asn1_time_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asynciotest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asynciotest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asynctest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asynctest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-bad_dtls_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bad_dtls_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-bftest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bftest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-bio_callback_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bio_callback_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-bio_enc_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bio_enc_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-bioprinttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bioprinttest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-bntest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/bntest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_aes", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_aes-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_asn1", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_asn1-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_asn1t", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_asn1t-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_async", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_async-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_bio", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_bio-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_blowfish", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_blowfish-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_bn", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_bn-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_buffer", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_buffer-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_camellia", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_camellia-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_cast", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_cast-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_cmac", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_cmac-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_cms", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_cms-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_comp", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_comp-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_conf", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_conf-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_conf_api", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_conf_api-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_crypto", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_crypto-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_x509", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_x509-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_x509_vfy", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_x509_vfy-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-buildtest_x509v3", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
':gen-test-buildtest_x509v3-c', | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-casttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/casttest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-chacha_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/chacha_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-cipherbytes_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/cipherbytes_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-cipherlist_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/cipherlist_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ciphername_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ciphername_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-clienthellotest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/clienthellotest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-cmsapitest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/cmsapitest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-conf_include_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/conf_include_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-constant_time_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/constant_time_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-crltest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/crltest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ct_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ct_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ctype_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ctype_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-curve448_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/curve448_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-d2i_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/d2i_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-danetest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/danetest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-destest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/destest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-dhtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/dhtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-drbg_cavs_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
("test", "**/*.h") | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/drbg_cavs_data.c","test/drbg_cavs_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-drbgtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/drbgtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-dsatest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/dsatest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-dtls_mtu_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/dtls_mtu_test.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-dtlstest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/dtlstest.c","test/ssltestlib.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-ssltest_old", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ssltest_old.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-stack_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/stack_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-sysdefaulttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/sysdefaulttest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-test_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/test_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-threadstest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/threadstest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-time_offset_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/time_offset_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-tls13ccstest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/ssltestlib.c","test/tls13ccstest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-tls13encryptiontest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/tls13encryptiontest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibssl.a"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-tls13secretstest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = [ (file, ["-fPIC","-DOPENSSL_USE_NODELETE","-DL_ENDIAN","-DOPENSSL_PIC","-DOPENSSL_CPUID_OBJ","-DOPENSSL_IA32_SSE2","-DOPENSSL_BN_ASM_MONT","-DOPENSSL_BN_ASM_MONT5","-DOPENSSL_BN_ASM_GF2m","-DSHA1_ASM","-DSHA256_ASM","-DSHA512_ASM","-DKECCAK1600_ASM","-DRC4_ASM","-DMD5_ASM","-DAES_ASM","-DVPAES_ASM","-DBSAES_ASM","-DGHASH_ASM","-DECP_NISTZ256_ASM","-DX25519_ASM","-DPADLOCK_ASM","-DPOLY1305_ASM","-DOPENSSLDIR=\"/usr/local/ssl\"","-DENGINESDIR=\"/usr/local/lib/engines-1.1\""]) for file in glob( | |
["ssl/packet.c","ssl/tls13_enc.c"], | |
include_dotfiles=False, | |
excludes = []) ] + | |
glob( | |
["test/tls13secretstest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-uitest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
("apps", "**/*.h") | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/uitest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":apps",":crypto",":ssl",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-v3ext", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/v3ext.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-v3nametest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/v3nametest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-verify_extra_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/verify_extra_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-versions", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/versions.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-wpackettest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/wpackettest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibssl.a"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-x509_check_cert_pkey_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/x509_check_cert_pkey_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-x509_dup_cert_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/x509_dup_cert_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-x509_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/x509_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-x509_time_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/x509_time_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-x509aux", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/x509aux.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-openssl", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
("apps", "**/*.h") | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'apps/progs.h': ':gen-apps-progs-h', | |
'progs.h': ':gen-apps-progs-h', | |
}), | |
srcs = glob( | |
["apps/*.c"], | |
excludes = ["apps/app_rand.c","apps/apps.c","apps/bf_prefix.c","apps/opt.c","apps/s_cb.c","apps/s_socket.c","apps/vms_decc_init.c","apps/vms_term_sock.c","apps/win32_init.c"], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":apps",":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-asn1-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/asn1.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-asn1_internal_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'include/openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asn1_internal_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl","-llibcrypto.a"], | |
deps = [":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asn1parse-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/asn1parse.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-bignum-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/bignum.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-bndiv-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/bndiv.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-client-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/client.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-cms-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/cms.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-conf-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/conf.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-crl-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/crl.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-ct-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/ct.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-server-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/server.c","fuzz/test-corpus.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":ssl"], | |
) | |
cxx_binary( | |
name = "exe-x509-test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["fuzz/test-corpus.c","fuzz/x509.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-aborttest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/aborttest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto"], | |
) | |
cxx_binary( | |
name = "exe-afalgtest", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/afalgtest.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asn1_encode_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asn1_encode_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
cxx_binary( | |
name = "exe-asn1_string_table_test", compiler_flags = ["-m64"], | |
preprocessor_flags = ["-DNDEBUG"], headers = merge_dicts(subdir_glob([ | |
]), { | |
'openssl/opensslconf.h': ':gen-include-openssl-opensslconf-h', | |
}), | |
srcs = glob( | |
["test/asn1_string_table_test.c"], | |
excludes = [], | |
include_dotfiles=False | |
) + [ | |
], | |
linker_flags = ["-Wa,--noexecstack","-L.","-lpthread","-ldl"], | |
deps = [":crypto",":testutil"], | |
) | |
genrule( | |
name = 'gen-crypto-include-internal-bn_conf-h', | |
out = 'bn_conf.h', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pl","*.pm","*.in","*.pl","crypto/include/internal/bn_conf.h.in","util/perl/with_fallback.pm","util/dofile.pl"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/include/internal && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" crypto/include/internal/bn_conf.h.in > crypto/include/internal/bn_conf.h && cd $TMP && cp crypto/include/internal/bn_conf.h $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-include-internal-dso_conf-h', | |
out = 'dso_conf.h', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pl","*.pm","*.in","*.pl","crypto/include/internal/dso_conf.h.in","util/perl/with_fallback.pm","util/dofile.pl"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/include/internal && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" crypto/include/internal/dso_conf.h.in > crypto/include/internal/dso_conf.h && cd $TMP && cp crypto/include/internal/dso_conf.h $OUT', | |
) | |
genrule( | |
name = 'gen-include-openssl-opensslconf-h', | |
out = 'opensslconf.h', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pl","include/openssl/*.pm","include/openssl/*.in","include/openssl/*.pl","*.pm","*.in","*.pl","util/perl/with_fallback.pm","util/dofile.pl"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/include/openssl && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" include/openssl/opensslconf.h.in > include/openssl/opensslconf.h && cd $TMP && cp include/openssl/opensslconf.h $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-aes-x86_64-s', | |
out = 'aes-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/aes-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/aes-x86_64.pl elf crypto/aes/aes-x86_64.s && cd $TMP && cp crypto/aes/aes-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-aesni-mb-x86_64-s', | |
out = 'aesni-mb-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/aesni-mb-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/aesni-mb-x86_64.pl elf crypto/aes/aesni-mb-x86_64.s && cd $TMP && cp crypto/aes/aesni-mb-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-aesni-sha1-x86_64-s', | |
out = 'aesni-sha1-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/aesni-sha1-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/aesni-sha1-x86_64.pl elf crypto/aes/aesni-sha1-x86_64.s && cd $TMP && cp crypto/aes/aesni-sha1-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-aesni-sha256-x86_64-s', | |
out = 'aesni-sha256-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/aesni-sha256-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/aesni-sha256-x86_64.pl elf crypto/aes/aesni-sha256-x86_64.s && cd $TMP && cp crypto/aes/aesni-sha256-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-aesni-x86_64-s', | |
out = 'aesni-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/aesni-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/aesni-x86_64.pl elf crypto/aes/aesni-x86_64.s && cd $TMP && cp crypto/aes/aesni-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-bsaes-x86_64-s', | |
out = 'bsaes-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/bsaes-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/bsaes-x86_64.pl elf crypto/aes/bsaes-x86_64.s && cd $TMP && cp crypto/aes/bsaes-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-aes-vpaes-x86_64-s', | |
out = 'vpaes-x86_64.s', | |
srcs = glob( | |
["crypto/aes/asm/vpaes-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/aes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/aes/asm/vpaes-x86_64.pl elf crypto/aes/vpaes-x86_64.s && cd $TMP && cp crypto/aes/vpaes-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-bn-rsaz-avx2-s', | |
out = 'rsaz-avx2.s', | |
srcs = glob( | |
["crypto/bn/asm/rsaz-avx2.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/bn && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/bn/asm/rsaz-avx2.pl elf crypto/bn/rsaz-avx2.s && cd $TMP && cp crypto/bn/rsaz-avx2.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-bn-rsaz-x86_64-s', | |
out = 'rsaz-x86_64.s', | |
srcs = glob( | |
["crypto/bn/asm/rsaz-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/bn && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/bn/asm/rsaz-x86_64.pl elf crypto/bn/rsaz-x86_64.s && cd $TMP && cp crypto/bn/rsaz-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-bn-x86_64-gf2m-s', | |
out = 'x86_64-gf2m.s', | |
srcs = glob( | |
["crypto/bn/asm/x86_64-gf2m.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/bn && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/bn/asm/x86_64-gf2m.pl elf crypto/bn/x86_64-gf2m.s && cd $TMP && cp crypto/bn/x86_64-gf2m.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-bn-x86_64-mont-s', | |
out = 'x86_64-mont.s', | |
srcs = glob( | |
["crypto/bn/asm/x86_64-mont.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/bn && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/bn/asm/x86_64-mont.pl elf crypto/bn/x86_64-mont.s && cd $TMP && cp crypto/bn/x86_64-mont.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-bn-x86_64-mont5-s', | |
out = 'x86_64-mont5.s', | |
srcs = glob( | |
["crypto/bn/asm/x86_64-mont5.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/bn && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/bn/asm/x86_64-mont5.pl elf crypto/bn/x86_64-mont5.s && cd $TMP && cp crypto/bn/x86_64-mont5.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-camellia-cmll-x86_64-s', | |
out = 'cmll-x86_64.s', | |
srcs = glob( | |
["crypto/camellia/asm/cmll-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/camellia && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/camellia/asm/cmll-x86_64.pl elf crypto/camellia/cmll-x86_64.s && cd $TMP && cp crypto/camellia/cmll-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-chacha-chacha-x86_64-s', | |
out = 'chacha-x86_64.s', | |
srcs = glob( | |
["crypto/chacha/asm/chacha-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/chacha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/chacha/asm/chacha-x86_64.pl elf crypto/chacha/chacha-x86_64.s && cd $TMP && cp crypto/chacha/chacha-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-buildinf-h', | |
out = 'buildinf.h', | |
srcs = glob( | |
["util/mkbuildinf.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto && cd $TMP && cd . && /usr/bin/perl util/mkbuildinf.pl "gcc -fPIC -pthread -m64 -Wa,--noexecstack -Wall -O3 -DOPENSSL_USE_NODELETE -DL_ENDIAN -DOPENSSL_PIC -DOPENSSL_CPUID_OBJ -DOPENSSL_IA32_SSE2 -DOPENSSL_BN_ASM_MONT -DOPENSSL_BN_ASM_MONT5 -DOPENSSL_BN_ASM_GF2m -DSHA1_ASM -DSHA256_ASM -DSHA512_ASM -DKECCAK1600_ASM -DRC4_ASM -DMD5_ASM -DAES_ASM -DVPAES_ASM -DBSAES_ASM -DGHASH_ASM -DECP_NISTZ256_ASM -DX25519_ASM -DPADLOCK_ASM -DPOLY1305_ASM -DNDEBUG" "linux-x86_64" > crypto/buildinf.h && cd $TMP && cp crypto/buildinf.h $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-ec-ecp_nistz256-x86_64-s', | |
out = 'ecp_nistz256-x86_64.s', | |
srcs = glob( | |
["crypto/ec/asm/ecp_nistz256-x86_64.pl","crypto/ec/ecp_nistz256_table.c","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/ec && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/ec/asm/ecp_nistz256-x86_64.pl elf crypto/ec/ecp_nistz256-x86_64.s && cd $TMP && cp crypto/ec/ecp_nistz256-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-ec-x25519-x86_64-s', | |
out = 'x25519-x86_64.s', | |
srcs = glob( | |
["crypto/ec/asm/x25519-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/ec && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/ec/asm/x25519-x86_64.pl elf crypto/ec/x25519-x86_64.s && cd $TMP && cp crypto/ec/x25519-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-md5-md5-x86_64-s', | |
out = 'md5-x86_64.s', | |
srcs = glob( | |
["crypto/md5/asm/md5-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/md5 && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/md5/asm/md5-x86_64.pl elf crypto/md5/md5-x86_64.s && cd $TMP && cp crypto/md5/md5-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-modes-aesni-gcm-x86_64-s', | |
out = 'aesni-gcm-x86_64.s', | |
srcs = glob( | |
["crypto/modes/asm/aesni-gcm-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/modes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/modes/asm/aesni-gcm-x86_64.pl elf crypto/modes/aesni-gcm-x86_64.s && cd $TMP && cp crypto/modes/aesni-gcm-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-modes-ghash-x86_64-s', | |
out = 'ghash-x86_64.s', | |
srcs = glob( | |
["crypto/modes/asm/ghash-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/modes && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/modes/asm/ghash-x86_64.pl elf crypto/modes/ghash-x86_64.s && cd $TMP && cp crypto/modes/ghash-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-poly1305-poly1305-x86_64-s', | |
out = 'poly1305-x86_64.s', | |
srcs = glob( | |
["crypto/poly1305/asm/poly1305-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/poly1305 && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/poly1305/asm/poly1305-x86_64.pl elf crypto/poly1305/poly1305-x86_64.s && cd $TMP && cp crypto/poly1305/poly1305-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-rc4-rc4-md5-x86_64-s', | |
out = 'rc4-md5-x86_64.s', | |
srcs = glob( | |
["crypto/rc4/asm/rc4-md5-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/rc4 && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/rc4/asm/rc4-md5-x86_64.pl elf crypto/rc4/rc4-md5-x86_64.s && cd $TMP && cp crypto/rc4/rc4-md5-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-rc4-rc4-x86_64-s', | |
out = 'rc4-x86_64.s', | |
srcs = glob( | |
["crypto/rc4/asm/rc4-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/rc4 && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/rc4/asm/rc4-x86_64.pl elf crypto/rc4/rc4-x86_64.s && cd $TMP && cp crypto/rc4/rc4-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-keccak1600-x86_64-s', | |
out = 'keccak1600-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/keccak1600-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/keccak1600-x86_64.pl elf crypto/sha/keccak1600-x86_64.s && cd $TMP && cp crypto/sha/keccak1600-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-sha1-mb-x86_64-s', | |
out = 'sha1-mb-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/sha1-mb-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/sha1-mb-x86_64.pl elf crypto/sha/sha1-mb-x86_64.s && cd $TMP && cp crypto/sha/sha1-mb-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-sha1-x86_64-s', | |
out = 'sha1-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/sha1-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/sha1-x86_64.pl elf crypto/sha/sha1-x86_64.s && cd $TMP && cp crypto/sha/sha1-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-sha256-mb-x86_64-s', | |
out = 'sha256-mb-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/sha256-mb-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/sha256-mb-x86_64.pl elf crypto/sha/sha256-mb-x86_64.s && cd $TMP && cp crypto/sha/sha256-mb-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-sha256-x86_64-s', | |
out = 'sha256-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/sha512-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/sha512-x86_64.pl elf crypto/sha/sha256-x86_64.s && cd $TMP && cp crypto/sha/sha256-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-sha-sha512-x86_64-s', | |
out = 'sha512-x86_64.s', | |
srcs = glob( | |
["crypto/sha/asm/sha512-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/sha && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/sha/asm/sha512-x86_64.pl elf crypto/sha/sha512-x86_64.s && cd $TMP && cp crypto/sha/sha512-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-whrlpool-wp-x86_64-s', | |
out = 'wp-x86_64.s', | |
srcs = glob( | |
["crypto/whrlpool/asm/wp-x86_64.pl","crypto/perlasm/x86_64-xlate.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto/whrlpool && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/whrlpool/asm/wp-x86_64.pl elf crypto/whrlpool/wp-x86_64.s && cd $TMP && cp crypto/whrlpool/wp-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-crypto-x86_64cpuid-s', | |
out = 'x86_64cpuid.s', | |
srcs = glob( | |
["crypto/perlasm/x86_64-xlate.pl","crypto/x86_64cpuid.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/crypto && cd $TMP && cd . && CC="gcc" /usr/bin/perl crypto/x86_64cpuid.pl elf crypto/x86_64cpuid.s && cd $TMP && cp crypto/x86_64cpuid.s $OUT', | |
) | |
genrule( | |
name = 'gen-libcrypto-map', | |
out = 'libcrypto.map', | |
srcs = glob( | |
["include/openssl/*.pm","include/openssl/*.h","include/openssl/*.num","include/openssl/*.pl","util/perl/OpenSSL/Glob.pm","util/libcrypto.num","util/libssl.num","util/mkdef.pl","include/internal/dso.h","include/internal/err.h","include/internal/o_dir.h","include/internal/o_str.h","include/internal/sslconf.h","configdata.pm"], | |
excludes = ["include/openssl/conf_api.h","include/openssl/ebcdic.h"], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && /usr/bin/perl util/mkdef.pl crypto linux > libcrypto.map && cd $TMP && cp libcrypto.map $OUT', | |
) | |
genrule( | |
name = 'gen-libssl-map', | |
out = 'libssl.map', | |
srcs = glob( | |
["include/openssl/*.pm","include/openssl/*.h","include/openssl/*.num","include/openssl/*.pl","util/perl/OpenSSL/Glob.pm","util/libcrypto.num","util/libssl.num","util/mkdef.pl","include/internal/dso.h","include/internal/err.h","include/internal/o_dir.h","include/internal/o_str.h","include/internal/sslconf.h","configdata.pm"], | |
excludes = ["include/openssl/conf_api.h","include/openssl/ebcdic.h"], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && /usr/bin/perl util/mkdef.pl ssl linux > libssl.map && cd $TMP && cp libssl.map $OUT', | |
) | |
genrule( | |
name = 'gen-engines-e_padlock-x86_64-s', | |
out = 'e_padlock-x86_64.s', | |
srcs = glob( | |
["crypto/perlasm/x86_64-xlate.pl","engines/asm/e_padlock-x86_64.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/engines && cd $TMP && cd . && CC="gcc" /usr/bin/perl engines/asm/e_padlock-x86_64.pl elf engines/e_padlock-x86_64.s && cd $TMP && cp engines/e_padlock-x86_64.s $OUT', | |
) | |
genrule( | |
name = 'gen-apps-progs-h', | |
out = 'progs.h', | |
srcs = glob( | |
["apps/*.c","apps/*.pl","apps/*.pm","*.c","*.pl","*.pm"], | |
excludes = ["apps/app_rand.c","apps/apps.c","apps/bf_prefix.c","apps/opt.c","apps/s_cb.c","apps/s_socket.c","apps/vms_decc_init.c","apps/vms_term_sock.c","apps/win32_init.c"], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/apps && cd $TMP && cd . && /usr/bin/perl apps/progs.pl apps/openssl > apps/progs.h && cd $TMP && cp apps/progs.h $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_aes-c', | |
out = 'buildtest_aes.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl aes > test/buildtest_aes.c && cd $TMP && cp test/buildtest_aes.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_asn1-c', | |
out = 'buildtest_asn1.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl asn1 > test/buildtest_asn1.c && cd $TMP && cp test/buildtest_asn1.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_asn1t-c', | |
out = 'buildtest_asn1t.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl asn1t > test/buildtest_asn1t.c && cd $TMP && cp test/buildtest_asn1t.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_async-c', | |
out = 'buildtest_async.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl async > test/buildtest_async.c && cd $TMP && cp test/buildtest_async.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_bio-c', | |
out = 'buildtest_bio.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl bio > test/buildtest_bio.c && cd $TMP && cp test/buildtest_bio.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_blowfish-c', | |
out = 'buildtest_blowfish.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl blowfish > test/buildtest_blowfish.c && cd $TMP && cp test/buildtest_blowfish.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_bn-c', | |
out = 'buildtest_bn.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl bn > test/buildtest_bn.c && cd $TMP && cp test/buildtest_bn.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_buffer-c', | |
out = 'buildtest_buffer.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl buffer > test/buildtest_buffer.c && cd $TMP && cp test/buildtest_buffer.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_camellia-c', | |
out = 'buildtest_camellia.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl camellia > test/buildtest_camellia.c && cd $TMP && cp test/buildtest_camellia.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_cast-c', | |
out = 'buildtest_cast.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl cast > test/buildtest_cast.c && cd $TMP && cp test/buildtest_cast.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_cmac-c', | |
out = 'buildtest_cmac.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl cmac > test/buildtest_cmac.c && cd $TMP && cp test/buildtest_cmac.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_cms-c', | |
out = 'buildtest_cms.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl cms > test/buildtest_cms.c && cd $TMP && cp test/buildtest_cms.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_comp-c', | |
out = 'buildtest_comp.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl comp > test/buildtest_comp.c && cd $TMP && cp test/buildtest_comp.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_conf-c', | |
out = 'buildtest_conf.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl conf > test/buildtest_conf.c && cd $TMP && cp test/buildtest_conf.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_conf_api-c', | |
out = 'buildtest_conf_api.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl conf_api > test/buildtest_conf_api.c && cd $TMP && cp test/buildtest_conf_api.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_crypto-c', | |
out = 'buildtest_crypto.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl crypto > test/buildtest_crypto.c && cd $TMP && cp test/buildtest_crypto.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ct-c', | |
out = 'buildtest_ct.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ct > test/buildtest_ct.c && cd $TMP && cp test/buildtest_ct.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_des-c', | |
out = 'buildtest_des.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl des > test/buildtest_des.c && cd $TMP && cp test/buildtest_des.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_dh-c', | |
out = 'buildtest_dh.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl dh > test/buildtest_dh.c && cd $TMP && cp test/buildtest_dh.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_dsa-c', | |
out = 'buildtest_dsa.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl dsa > test/buildtest_dsa.c && cd $TMP && cp test/buildtest_dsa.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_dtls1-c', | |
out = 'buildtest_dtls1.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl dtls1 > test/buildtest_dtls1.c && cd $TMP && cp test/buildtest_dtls1.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_e_os2-c', | |
out = 'buildtest_e_os2.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl e_os2 > test/buildtest_e_os2.c && cd $TMP && cp test/buildtest_e_os2.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ebcdic-c', | |
out = 'buildtest_ebcdic.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ebcdic > test/buildtest_ebcdic.c && cd $TMP && cp test/buildtest_ebcdic.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ec-c', | |
out = 'buildtest_ec.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ec > test/buildtest_ec.c && cd $TMP && cp test/buildtest_ec.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ecdh-c', | |
out = 'buildtest_ecdh.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ecdh > test/buildtest_ecdh.c && cd $TMP && cp test/buildtest_ecdh.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ecdsa-c', | |
out = 'buildtest_ecdsa.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ecdsa > test/buildtest_ecdsa.c && cd $TMP && cp test/buildtest_ecdsa.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_engine-c', | |
out = 'buildtest_engine.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl engine > test/buildtest_engine.c && cd $TMP && cp test/buildtest_engine.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_evp-c', | |
out = 'buildtest_evp.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl evp > test/buildtest_evp.c && cd $TMP && cp test/buildtest_evp.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_hmac-c', | |
out = 'buildtest_hmac.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl hmac > test/buildtest_hmac.c && cd $TMP && cp test/buildtest_hmac.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_idea-c', | |
out = 'buildtest_idea.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl idea > test/buildtest_idea.c && cd $TMP && cp test/buildtest_idea.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_kdf-c', | |
out = 'buildtest_kdf.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl kdf > test/buildtest_kdf.c && cd $TMP && cp test/buildtest_kdf.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_lhash-c', | |
out = 'buildtest_lhash.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl lhash > test/buildtest_lhash.c && cd $TMP && cp test/buildtest_lhash.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_md4-c', | |
out = 'buildtest_md4.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl md4 > test/buildtest_md4.c && cd $TMP && cp test/buildtest_md4.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_md5-c', | |
out = 'buildtest_md5.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl md5 > test/buildtest_md5.c && cd $TMP && cp test/buildtest_md5.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_mdc2-c', | |
out = 'buildtest_mdc2.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl mdc2 > test/buildtest_mdc2.c && cd $TMP && cp test/buildtest_mdc2.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_modes-c', | |
out = 'buildtest_modes.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl modes > test/buildtest_modes.c && cd $TMP && cp test/buildtest_modes.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_obj_mac-c', | |
out = 'buildtest_obj_mac.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl obj_mac > test/buildtest_obj_mac.c && cd $TMP && cp test/buildtest_obj_mac.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_objects-c', | |
out = 'buildtest_objects.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl objects > test/buildtest_objects.c && cd $TMP && cp test/buildtest_objects.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ocsp-c', | |
out = 'buildtest_ocsp.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ocsp > test/buildtest_ocsp.c && cd $TMP && cp test/buildtest_ocsp.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_opensslv-c', | |
out = 'buildtest_opensslv.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl opensslv > test/buildtest_opensslv.c && cd $TMP && cp test/buildtest_opensslv.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ossl_typ-c', | |
out = 'buildtest_ossl_typ.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ossl_typ > test/buildtest_ossl_typ.c && cd $TMP && cp test/buildtest_ossl_typ.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_pem-c', | |
out = 'buildtest_pem.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl pem > test/buildtest_pem.c && cd $TMP && cp test/buildtest_pem.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_pem2-c', | |
out = 'buildtest_pem2.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl pem2 > test/buildtest_pem2.c && cd $TMP && cp test/buildtest_pem2.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_pkcs12-c', | |
out = 'buildtest_pkcs12.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl pkcs12 > test/buildtest_pkcs12.c && cd $TMP && cp test/buildtest_pkcs12.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_pkcs7-c', | |
out = 'buildtest_pkcs7.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl pkcs7 > test/buildtest_pkcs7.c && cd $TMP && cp test/buildtest_pkcs7.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_rand-c', | |
out = 'buildtest_rand.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl rand > test/buildtest_rand.c && cd $TMP && cp test/buildtest_rand.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_rand_drbg-c', | |
out = 'buildtest_rand_drbg.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl rand_drbg > test/buildtest_rand_drbg.c && cd $TMP && cp test/buildtest_rand_drbg.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_rc2-c', | |
out = 'buildtest_rc2.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl rc2 > test/buildtest_rc2.c && cd $TMP && cp test/buildtest_rc2.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_rc4-c', | |
out = 'buildtest_rc4.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl rc4 > test/buildtest_rc4.c && cd $TMP && cp test/buildtest_rc4.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ripemd-c', | |
out = 'buildtest_ripemd.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ripemd > test/buildtest_ripemd.c && cd $TMP && cp test/buildtest_ripemd.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_rsa-c', | |
out = 'buildtest_rsa.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl rsa > test/buildtest_rsa.c && cd $TMP && cp test/buildtest_rsa.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_safestack-c', | |
out = 'buildtest_safestack.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl safestack > test/buildtest_safestack.c && cd $TMP && cp test/buildtest_safestack.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_seed-c', | |
out = 'buildtest_seed.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl seed > test/buildtest_seed.c && cd $TMP && cp test/buildtest_seed.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_sha-c', | |
out = 'buildtest_sha.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl sha > test/buildtest_sha.c && cd $TMP && cp test/buildtest_sha.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_srp-c', | |
out = 'buildtest_srp.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl srp > test/buildtest_srp.c && cd $TMP && cp test/buildtest_srp.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_srtp-c', | |
out = 'buildtest_srtp.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl srtp > test/buildtest_srtp.c && cd $TMP && cp test/buildtest_srtp.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ssl-c', | |
out = 'buildtest_ssl.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ssl > test/buildtest_ssl.c && cd $TMP && cp test/buildtest_ssl.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ssl2-c', | |
out = 'buildtest_ssl2.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ssl2 > test/buildtest_ssl2.c && cd $TMP && cp test/buildtest_ssl2.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_stack-c', | |
out = 'buildtest_stack.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl stack > test/buildtest_stack.c && cd $TMP && cp test/buildtest_stack.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_store-c', | |
out = 'buildtest_store.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl store > test/buildtest_store.c && cd $TMP && cp test/buildtest_store.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_symhacks-c', | |
out = 'buildtest_symhacks.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl symhacks > test/buildtest_symhacks.c && cd $TMP && cp test/buildtest_symhacks.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_tls1-c', | |
out = 'buildtest_tls1.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl tls1 > test/buildtest_tls1.c && cd $TMP && cp test/buildtest_tls1.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ts-c', | |
out = 'buildtest_ts.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ts > test/buildtest_ts.c && cd $TMP && cp test/buildtest_ts.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_txt_db-c', | |
out = 'buildtest_txt_db.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl txt_db > test/buildtest_txt_db.c && cd $TMP && cp test/buildtest_txt_db.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_ui-c', | |
out = 'buildtest_ui.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl ui > test/buildtest_ui.c && cd $TMP && cp test/buildtest_ui.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_whrlpool-c', | |
out = 'buildtest_whrlpool.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl whrlpool > test/buildtest_whrlpool.c && cd $TMP && cp test/buildtest_whrlpool.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_x509-c', | |
out = 'buildtest_x509.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl x509 > test/buildtest_x509.c && cd $TMP && cp test/buildtest_x509.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_x509_vfy-c', | |
out = 'buildtest_x509_vfy.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl x509_vfy > test/buildtest_x509_vfy.c && cd $TMP && cp test/buildtest_x509_vfy.c $OUT', | |
) | |
genrule( | |
name = 'gen-test-buildtest_x509v3-c', | |
out = 'buildtest_x509v3.c', | |
srcs = glob( | |
["test/generate_buildtest.pl"], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && /usr/bin/perl test/generate_buildtest.pl x509v3 > test/buildtest_x509v3.c && cd $TMP && cp test/buildtest_x509v3.c $OUT', | |
) | |
genrule( | |
name = 'gen-apps-ca-pl', | |
out = 'CA.pl', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.pl","*.in","*.pm","*.pl","util/perl/with_fallback.pm","util/dofile.pl","apps/CA.pl.in"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/apps && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" apps/CA.pl.in > "apps/CA.pl" && cd $TMP && cp apps/CA.pl $OUT', | |
) | |
genrule( | |
name = 'gen-apps-tsget', | |
out = 'tsget', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.pl","*.in","*.pm","*.pl","util/perl/with_fallback.pm","util/dofile.pl","apps/tsget.in"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/apps && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" apps/tsget.in > "apps/tsget" && cd $TMP && cp apps/tsget $OUT', | |
) | |
genrule( | |
name = 'gen-tools-c_rehash', | |
out = 'c_rehash', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.in","external/perl/transfer/Text/*.pl","tools/*.pm","tools/*.in","tools/*.pl","*.pm","*.in","*.pl","util/perl/with_fallback.pm","util/dofile.pl"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/tools && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" tools/c_rehash.in > "tools/c_rehash" && cd $TMP && cp tools/c_rehash $OUT', | |
) | |
genrule( | |
name = 'gen-util-shlib_wrap-sh', | |
out = 'shlib_wrap.sh', | |
srcs = glob( | |
["external/perl/Text-Template-1.46/lib/Text/*.pm","external/perl/Text-Template-1.46/lib/Text/*.pl","external/perl/Text-Template-1.46/lib/Text/*.in","external/perl/transfer/Text/*.pm","external/perl/transfer/Text/*.pl","external/perl/transfer/Text/*.in","*.pm","*.pl","*.in","util/perl/with_fallback.pm","util/dofile.pl","util/shlib_wrap.sh.in"], | |
excludes = [], | |
include_dotfiles=True | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/util && cd $TMP && cd . && /usr/bin/perl "-I." -Mconfigdata "util/dofile.pl" "-oMakefile" util/shlib_wrap.sh.in > "util/shlib_wrap.sh" && cd $TMP && cp util/shlib_wrap.sh $OUT', | |
) | |
genrule( | |
name = 'gen-apps-stujuuze', | |
out = 'stUjuUze', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/apps && cd $TMP && cd . && ranlib apps/libapps.a || echo Never mind. && cd $TMP && cp apps/stUjuUze $OUT', | |
) | |
genrule( | |
name = 'gen-test-steavznr', | |
out = 'stEaVzNr', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/test && cd $TMP && cd . && ranlib test/libtestutil.a || echo Never mind. && cd $TMP && cp test/stEaVzNr $OUT', | |
) | |
genrule( | |
name = 'gen-st8uwobz', | |
out = 'st8uwOBz', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && ranlib libssl.a || echo Never mind. && cd $TMP && cp st8uwOBz $OUT', | |
) | |
genrule( | |
name = 'gen-stmhrpar', | |
out = 'stmHRpaR', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && ranlib libcrypto.a || echo Never mind. && cd $TMP && cp stmHRpaR $OUT', | |
) | |
genrule( | |
name = 'gen-libcrypto-pc', | |
out = 'libcrypto.pc', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && ( echo \'prefix=/usr/local\'; echo \'exec_prefix=${prefix}\'; if [ -n "lib" ]; then echo \'libdir=${exec_prefix}/lib\'; else echo \'libdir=/usr/local/lib\'; fi; echo \'includedir=${prefix}/include\'; echo \'enginesdir=${libdir}/engines-1.1\'; echo \'\'; echo \'Name: OpenSSL-libcrypto\'; echo \'Description: OpenSSL cryptography library\'; echo \'Version: \'1.1.1-pre9-dev; echo \'Libs: -L${libdir} -lcrypto\'; echo \'Libs.private: -ldl -pthread \'; echo \'Cflags: -I${includedir}\' ) > libcrypto.pc && cd $TMP && cp libcrypto.pc $OUT', | |
) | |
genrule( | |
name = 'gen-libssl-pc', | |
out = 'libssl.pc', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && ( echo \'prefix=/usr/local\'; echo \'exec_prefix=${prefix}\'; if [ -n "lib" ]; then echo \'libdir=${exec_prefix}/lib\'; else echo \'libdir=/usr/local/lib\'; fi; echo \'includedir=${prefix}/include\'; echo \'\'; echo \'Name: OpenSSL-libssl\'; echo \'Description: Secure Sockets Layer and cryptography libraries\'; echo \'Version: \'1.1.1-pre9-dev; echo \'Requires.private: libcrypto\'; echo \'Libs: -L${libdir} -lssl\'; echo \'Cflags: -I${includedir}\' ) > libssl.pc && cd $TMP && cp libssl.pc $OUT', | |
) | |
genrule( | |
name = 'gen-openssl-pc', | |
out = 'openssl.pc', | |
srcs = glob( | |
[], | |
excludes = [], | |
include_dotfiles=False | |
), | |
cmd = 'cp -r $SRCDIR/. $TMP && cd $TMP && mkdir -p $TMP/. && cd $TMP && cd . && ( echo \'prefix=/usr/local\'; echo \'exec_prefix=${prefix}\'; if [ -n "lib" ]; then echo \'libdir=${exec_prefix}/lib\'; else echo \'libdir=/usr/local/lib\'; fi; echo \'includedir=${prefix}/include\'; echo \'\'; echo \'Name: OpenSSL\'; echo \'Description: Secure Sockets Layer and cryptography libraries and tools\'; echo \'Version: \'1.1.1-pre9-dev; echo \'Requires: libssl libcrypto\' ) > openssl.pc && cd $TMP && cp openssl.pc $OUT', | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment