9ef99d5656
These structures allow for blobs of data (e.g. certificates) to be deduplicated in memory. Change-Id: Iebfec90b85d55565848a178b6951562b4ccc083e Reviewed-on: https://boringssl-review.googlesource.com/11820 Reviewed-by: Adam Langley <alangley@gmail.com> Commit-Queue: Adam Langley <alangley@gmail.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
21 lines
238 B
CMake
21 lines
238 B
CMake
include_directories(../../include)
|
|
|
|
add_library(
|
|
pool
|
|
|
|
OBJECT
|
|
|
|
pool.c
|
|
)
|
|
|
|
add_executable(
|
|
pool_test
|
|
|
|
pool_test.cc
|
|
|
|
$<TARGET_OBJECTS:test_support>
|
|
)
|
|
|
|
target_link_libraries(pool_test crypto)
|
|
add_dependencies(all_tests pool_test)
|