diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-17 00:21:48 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-02-17 22:29:50 +0100 |
commit | a141c401f78467bc15f62882fca5d55a007cacbb (patch) | |
tree | 908ac71a8640f78f45d22c6808c5fa6e373000fa /asl/memory/BUILD.bazel | |
parent | cb77cbe9ce4cddad6a460aa190ff70f0c13e4703 (diff) |
Reorganize everything
Diffstat (limited to 'asl/memory/BUILD.bazel')
-rw-r--r-- | asl/memory/BUILD.bazel | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/asl/memory/BUILD.bazel b/asl/memory/BUILD.bazel new file mode 100644 index 0000000..0a198bc --- /dev/null +++ b/asl/memory/BUILD.bazel @@ -0,0 +1,16 @@ +cc_library( + name = "memory", + hdrs = [ + "allocator.hpp", + "layout.hpp", + "memory.hpp", + ], + srcs = [ + "allocator.cpp", + ], + deps = [ + "//asl/base", + ], + visibility = ["//visibility:public"], +) + |