• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
10cc_variable(
11    name = "my_list",
12    type = types.list(types.string),
13)
14
15analysis_test_suite(
16    name = "test_suite",
17    targets = TARGETS,
18    tests = TESTS,
19)
20