diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-05-28 00:47:52 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-05-28 00:47:52 +0200 |
commit | 048ab0903b8749717f4461a6abcfa023ceef0dd6 (patch) | |
tree | 480ff91c9190ca7823d335df0eb31b34c8229422 /asl/handle_pool/BUILD.bazel | |
parent | b8a87223bb70fccc47ba0f9c96b3f58de6e1e5bd (diff) |
WIPhandle_pool
Diffstat (limited to 'asl/handle_pool/BUILD.bazel')
-rw-r--r-- | asl/handle_pool/BUILD.bazel | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/asl/handle_pool/BUILD.bazel b/asl/handle_pool/BUILD.bazel new file mode 100644 index 0000000..e5048d3 --- /dev/null +++ b/asl/handle_pool/BUILD.bazel @@ -0,0 +1,33 @@ +# Copyright 2025 Steven Le Rouzic +# +# SPDX-License-Identifier: BSD-3-Clause + +package( + default_applicable_licenses = ["//:license"], +) + +cc_library( + name = "index_pool", + hdrs = [ + "index_pool.hpp", + ], + deps = [ + "//asl/memory", + "//asl/memory:allocator", + "//asl/base", + "//asl/containers:chunked_buffer", + ], + visibility = ["//visibility:public"], +) + +cc_test( + name = "index_pool_tests", + srcs = [ + "index_pool_tests.cpp", + ], + deps = [ + ":index_pool", + "//asl/tests:utils", + "//asl/testing", + ], +) |