aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/test/BUILD
blob: 0631350e53455234695a1d20660112284337482d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package(default_visibility = ["//visibility:public"])

# Members of this filegroup shouldn't have duplicate basenames, otherwise
# TestRunnerAction#getRuntimeArtifact() will get confused.
filegroup(
    name = "runtime",
    srcs = ["test-setup.sh"],
)

filegroup(
    name = "coverage_support",
    srcs = [],
)

filegroup(
    name = "coverage_report_generator",
    srcs = ["dummy_coverage_report_generator"],
)

filegroup(
    name = "srcs",
    srcs = [
        "BUILD",
        "test-setup.sh",
    ],
)