aboutsummaryrefslogtreecommitdiff
path: root/tests/rule_based_toolchain/nested_args/BUILD
blob: 30e75edf311fcb8a16804a7a6b41026b8cfbb927 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
load("//cc/toolchains/impl:variables.bzl", "cc_variable", "types")
load("//tests/rule_based_toolchain:analysis_test_suite.bzl", "analysis_test_suite")
load(":nested_args_test.bzl", "TARGETS", "TESTS")

cc_variable(
    name = "foo",
    type = types.string,
)

analysis_test_suite(
    name = "test_suite",
    targets = TARGETS,
    tests = TESTS,
)