boringssl/ssl/test/CMakeLists.txt
Matthew Braithwaite d2f87a7779 shim: move handshake helper functions into their own file.
To wit, |RetryAsync| and |CheckIdempotentError|.

This helps with creating a separate binary to perform split
handshakes.

Separate handshake utilities

Change-Id: I81d0bc38f58e7e1a92b58bf09407452b345213b4
Reviewed-on: https://boringssl-review.googlesource.com/29346
Commit-Queue: Matt Braithwaite <mab@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
Reviewed-by: David Benjamin <davidben@google.com>
2018-07-03 23:30:20 +00:00

18 lines
268 B
CMake

include_directories(../../include)
add_executable(
bssl_shim
async_bio.cc
bssl_shim.cc
handshake_util.cc
packeted_bio.cc
settings_writer.cc
test_config.cc
test_state.cc
$<TARGET_OBJECTS:test_support>
)
target_link_libraries(bssl_shim ssl crypto)