summaryrefslogtreecommitdiff
path: root/asl/log/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'asl/log/BUILD.bazel')
-rw-r--r--asl/log/BUILD.bazel26
1 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"],
+)
+