summaryrefslogtreecommitdiff
path: root/asl/testing/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'asl/testing/BUILD.bazel')
-rw-r--r--asl/testing/BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/asl/testing/BUILD.bazel b/asl/testing/BUILD.bazel
new file mode 100644
index 0000000..2942073
--- /dev/null
+++ b/asl/testing/BUILD.bazel
@@ -0,0 +1,13 @@
+cc_library(
+ name = "testing",
+ hdrs = [
+ "testing.hpp",
+ ],
+ srcs = [
+ "testing.cpp",
+ ],
+ deps = [
+ "//asl",
+ ],
+ visibility = ["//visibility:public"],
+)