diff options
Diffstat (limited to 'deimos/core/BUILD')
-rw-r--r-- | deimos/core/BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deimos/core/BUILD b/deimos/core/BUILD index fcedb22..08f1ada 100644 --- a/deimos/core/BUILD +++ b/deimos/core/BUILD @@ -8,6 +8,7 @@ cc_library( "hash.h",
"id_name.h",
"io.h",
+ "log.h",
"os.h",
"std.h",
"format.h",
@@ -15,8 +16,10 @@ cc_library( srcs = [
"allocator.cpp",
"api_registry.cpp",
- "os_win32.cpp",
"format.cpp",
+ "io.cpp",
+ "log.cpp",
+ "os_win32.cpp",
],
visibility = ["//:__subpackages__"],
)
|