From 195f20ff1706b2ae9aeb3a991245dd23f692eeea Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Thu, 26 Jun 2025 18:36:24 +0200 Subject: Add SparseHandlePool --- asl/handle_pool/BUILD.bazel | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'asl/handle_pool/BUILD.bazel') diff --git a/asl/handle_pool/BUILD.bazel b/asl/handle_pool/BUILD.bazel index 08a41a9..cb3c44d 100644 --- a/asl/handle_pool/BUILD.bazel +++ b/asl/handle_pool/BUILD.bazel @@ -32,6 +32,17 @@ cc_library( visibility = ["//visibility:public"], ) +cc_library( + name = "sparse_handle_pool", + hdrs = [ + "sparse_handle_pool.hpp", + ], + deps = [ + ":index_pool", + ], + visibility = ["//visibility:public"], +) + cc_test( name = "index_pool_tests", srcs = [ @@ -56,3 +67,15 @@ cc_test( "//asl/testing", ], ) + +cc_test( + name = "sparse_handle_pool_tests", + srcs = [ + "sparse_handle_pool_tests.cpp", + ], + deps = [ + ":sparse_handle_pool", + "//asl/tests:utils", + "//asl/testing", + ], +) -- cgit