diff options
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"], +) + |