summaryrefslogtreecommitdiff
path: root/deimos/core/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'deimos/core/BUILD')
-rw-r--r--deimos/core/BUILD14
1 files changed, 14 insertions, 0 deletions
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__"],
+)
+