1load("//cc/toolchains/impl:variables.bzl", "cc_variable", "types") 2load("//tests/rule_based_toolchain:analysis_test_suite.bzl", "analysis_test_suite") 3load(":nested_args_test.bzl", "TARGETS", "TESTS") 4 5cc_variable( 6 name = "foo", 7 type = types.string, 8) 9 10analysis_test_suite( 11 name = "test_suite", 12 targets = TARGETS, 13 tests = TESTS, 14) 15