summaryrefslogtreecommitdiff
path: root/asl/meta/BUILD.bazel
blob: e5b44a72578e960aebab2af435e1c9d6c502176c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = "%s_tests" % name,
    srcs = [
        "%s_tests.cpp" % name,
    ],
    deps = [
        ":meta",
    ],
) for name in ["empty", "quals", "refs", "types", "funcs"]]