diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-05-26 00:47:54 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-05-26 00:48:06 +0200 |
commit | a1db1cd9e22e77041d5f1360f1d1ccdc52b86306 (patch) | |
tree | c1cc6dc9c17885a0789028f7a55c7126f33beee7 /asl/tests/BUILD.bazel | |
parent | 54b95b16629f0cd4bc30e6899e00019b3ab94012 (diff) |
Implement chunked_buffer
Diffstat (limited to 'asl/tests/BUILD.bazel')
-rw-r--r-- | asl/tests/BUILD.bazel | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/asl/tests/BUILD.bazel b/asl/tests/BUILD.bazel index 016f037..2970377 100644 --- a/asl/tests/BUILD.bazel +++ b/asl/tests/BUILD.bazel @@ -9,10 +9,12 @@ package( cc_library( name = "utils", hdrs = [ + "counting_allocator.hpp", "types.hpp", ], deps = [ "//asl/base", + "//asl/memory:allocator", ], visibility = ["//asl:__subpackages__"], ) |