diff options
Diffstat (limited to 'asl/logging/BUILD.bazel')
-rw-r--r-- | asl/logging/BUILD.bazel | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/asl/logging/BUILD.bazel b/asl/logging/BUILD.bazel new file mode 100644 index 0000000..396da74 --- /dev/null +++ b/asl/logging/BUILD.bazel @@ -0,0 +1,26 @@ +cc_library( + name = "logging", + srcs = [ + "logging.cpp", + ], + hdrs = [ + "logging.hpp", + ], + deps = [ + "//asl", + ], + visibility = ["//visibility:public"], +) + +cc_test( + name = "tests", + srcs = [ + "logging_tests.cpp" + ], + deps = [ + ":logging", + "//asl/testing", + ], + visibility = ["//visibility:public"], +) + |