summaryrefslogtreecommitdiff
path: root/asl
diff options
context:
space:
mode:
Diffstat (limited to 'asl')
-rw-r--r--asl/log/BUILD.bazel26
-rw-r--r--asl/log/log.cpp0
-rw-r--r--asl/log/log.hpp0
-rw-r--r--asl/log/log_tests.cpp0
4 files changed, 26 insertions, 0 deletions
diff --git a/asl/log/BUILD.bazel b/asl/log/BUILD.bazel
new file mode 100644
index 0000000..9aabf00
--- /dev/null
+++ b/asl/log/BUILD.bazel
@@ -0,0 +1,26 @@
+cc_library(
+ name = "log",
+ srcs = [
+ "log.hpp",
+ ],
+ hdrs = [
+ "log.cpp",
+ ],
+ deps = [
+ "//asl",
+ ],
+ visibility = ["//visibility:public"],
+)
+
+cc_test(
+ name = "tests",
+ srcs = [
+ "log_tests.cpp"
+ ],
+ deps = [
+ ":log",
+ "//asl/testing",
+ ],
+ visibility = ["//visibility:public"],
+)
+
diff --git a/asl/log/log.cpp b/asl/log/log.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/asl/log/log.cpp
diff --git a/asl/log/log.hpp b/asl/log/log.hpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/asl/log/log.hpp
diff --git a/asl/log/log_tests.cpp b/asl/log/log_tests.cpp
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/asl/log/log_tests.cpp