summaryrefslogtreecommitdiff
path: root/asl/handle_pool/BUILD.bazel
diff options
context:
space:
mode:
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",
+ ],
+)