eb599890b9
Change-Id: I64533d2b4a6b075fa3ccea1abfd0ec5106673453 Reviewed-on: https://boringssl-review.googlesource.com/15704 Reviewed-by: David Benjamin <davidben@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
92 lines
1.7 KiB
CMake
92 lines
1.7 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_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_sha_test crypto)
|
|
target_link_libraries(cavp_sha_monte_test crypto)
|
|
|
|
target_link_libraries(cavp_ctr_drbg_test crypto)
|
|
endif()
|