summaryrefslogtreecommitdiff
path: root/asl/handle_pool/BUILD.bazel
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-06-26 18:36:24 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-07-03 18:35:25 +0200
commit195f20ff1706b2ae9aeb3a991245dd23f692eeea (patch)
treeb21fd230726791a9cb1093f1f0f6e7a995063cc2 /asl/handle_pool/BUILD.bazel
parenta78e24e9ebf24fb9980328b4103c8351bae23ff3 (diff)
Add SparseHandlePool
Diffstat (limited to 'asl/handle_pool/BUILD.bazel')
-rw-r--r--asl/handle_pool/BUILD.bazel23
1 files changed, 23 insertions, 0 deletions
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",
+ ],
+)