summaryrefslogtreecommitdiff
path: root/asl/meta/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'asl/meta/BUILD.bazel')
-rw-r--r--asl/meta/BUILD.bazel17
1 files changed, 13 insertions, 4 deletions
diff --git a/asl/meta/BUILD.bazel b/asl/meta/BUILD.bazel
index f914bf3..e5b44a7 100644
--- a/asl/meta/BUILD.bazel
+++ b/asl/meta/BUILD.bazel
@@ -1,18 +1,27 @@
cc_library(
name = "meta",
hdrs = [
+ "empty.hpp",
+ "funcs.hpp",
+ "quals.hpp",
+ "refs.hpp",
"types.hpp",
],
+ srcs = [
+ "internal/quals.hpp",
+ "internal/refs.hpp",
+ "internal/types.hpp",
+ ],
visibility = ["//visibility:public"],
)
-cc_test(
- name = "types_tests",
+[cc_test(
+ name = "%s_tests" % name,
srcs = [
- "types_tests.cpp",
+ "%s_tests.cpp" % name,
],
deps = [
":meta",
],
-)
+) for name in ["empty", "quals", "refs", "types", "funcs"]]