summaryrefslogtreecommitdiff
path: root/deimos/core/BUILD
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-20 01:22:04 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-21 00:49:12 +0200
commitc147cb2a949d2a5c75804613c45e46c1a2ec8ab1 (patch)
treeb455973c23b4475244fcc5d8b54077a71a1c5126 /deimos/core/BUILD
parent10ec28c5de9442fe93635ae76ca397d138f9e93c (diff)
Temporary allocator
Diffstat (limited to 'deimos/core/BUILD')
-rw-r--r--deimos/core/BUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/deimos/core/BUILD b/deimos/core/BUILD
index 84ed375..f81101b 100644
--- a/deimos/core/BUILD
+++ b/deimos/core/BUILD
@@ -5,6 +5,7 @@ cc_library(
"api_registry.h",
"atomic.h",
"base.h",
+ "format.h",
"gsl.h",
"hash.h",
"id_name.h",
@@ -13,7 +14,7 @@ cc_library(
"os.h",
"status.h",
"std.h",
- "format.h",
+ "temp_allocator.h",
],
srcs = [
"allocator.cpp",
@@ -23,6 +24,7 @@ cc_library(
"log.cpp",
"os_win32.cpp",
"status.cpp",
+ "temp_allocator.cpp",
],
visibility = ["//:__subpackages__"],
)