493b2a4bf8
Change-Id: Idb84c8dbd7c0d74d8e56703d18f422a1841b14ba Reviewed-on: https://boringssl-review.googlesource.com/15744 Reviewed-by: Steven Valdez <svaldez@google.com> Reviewed-by: David Benjamin <davidben@google.com> Reviewed-by: Adam Langley <agl@google.com> Commit-Queue: Steven Valdez <svaldez@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
103 lines
1.9 KiB
CMake
103 lines
1.9 KiB
CMake
include_directories(../include)
|
|
|
|
if (FIPS)
|
|
add_executable(
|
|
cavp_aes_test
|
|
|
|
cavp_aes_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_aes_gcm_test
|
|
|
|
cavp_aes_gcm_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_ecdsa2_keypair_test
|
|
|
|
cavp_ecdsa2_keypair_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_ecdsa2_pkv_test
|
|
|
|
cavp_ecdsa2_pkv_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_ecdsa2_siggen_test
|
|
|
|
cavp_ecdsa2_siggen_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_ecdsa2_sigver_test
|
|
|
|
cavp_ecdsa2_sigver_test.cc
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_hmac_test
|
|
|
|
cavp_hmac_test.cc
|
|
cavp_test_util.h
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_sha_test
|
|
|
|
cavp_sha_test.cc
|
|
cavp_test_util.h
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_sha_monte_test
|
|
|
|
cavp_sha_monte_test.cc
|
|
cavp_test_util.h
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
add_executable(
|
|
cavp_ctr_drbg_test
|
|
|
|
cavp_ctr_drbg_test.cc
|
|
cavp_test_util.h
|
|
cavp_test_util.cc
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(cavp_aes_test crypto)
|
|
target_link_libraries(cavp_aes_gcm_test crypto)
|
|
|
|
target_link_libraries(cavp_ecdsa2_keypair_test crypto)
|
|
target_link_libraries(cavp_ecdsa2_pkv_test crypto)
|
|
target_link_libraries(cavp_ecdsa2_siggen_test crypto)
|
|
target_link_libraries(cavp_ecdsa2_sigver_test crypto)
|
|
|
|
target_link_libraries(cavp_hmac_test crypto)
|
|
|
|
target_link_libraries(cavp_sha_test crypto)
|
|
target_link_libraries(cavp_sha_monte_test crypto)
|
|
|
|
target_link_libraries(cavp_ctr_drbg_test crypto)
|
|
endif()
|