From 00c0d78199fcfbbb20828be5e06fd2d271fa4c1e Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sun, 24 Mar 2024 23:49:26 +0100 Subject: Initial commit --- deimos/core/BUILD | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 deimos/core/BUILD (limited to 'deimos/core/BUILD') diff --git a/deimos/core/BUILD b/deimos/core/BUILD new file mode 100644 index 0000000..2093642 --- /dev/null +++ b/deimos/core/BUILD @@ -0,0 +1,14 @@ +cc_library( + name = "core", + hdrs = [ + "base.h", + "allocator.h", + "api_registry.h", + ], + srcs = [ + "allocator.cpp", + "api_registry.cpp", + ], + visibility = ["//:__subpackages__"], +) + -- cgit