summaryrefslogtreecommitdiff
path: root/asl/BUILD.bazel
blob: dc0aef8ff66692e21842b45820ec277b93bed745 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cc_library(
    name = "asl",
    hdrs = [
        "integers.hpp",
        "meta.hpp",
    ],
    visibility = ["//visibility:public"],
)

[cc_test(
    name = "%s_tests" % name,
    srcs = [
        "%s_tests.cpp" % name,
    ],
    deps = [
        ":asl",
    ],
) for name in ["integers", "meta"]]