2
0
Fork 0
mirror of https://github.com/bazelbuild/rules_cc synced 2024-11-25 17:31:30 +00:00
rules_cc/tests/rule_based_toolchain/nested_args/BUILD

20 lines
426 B
Python
Raw Normal View History

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,
)
cc_variable(
name = "my_list",
type = types.list(types.string),
)
analysis_test_suite(
name = "test_suite",
targets = TARGETS,
tests = TESTS,
)