xref: /aosp_15_r20/external/jazzer-api/bazel/coverage/BUILD.bazel (revision 33edd6723662ea34453766bfdca85dbfdd5342b8)
1# Run this target to generate and open an HTML coverage report.
2# Takes the same arguments as `bazel coverage`, but after a double dash (`--`).
3# The default is to run `bazel coverage //...`, which accumulates the coverage of all tests.
4sh_binary(
5    name = "coverage",
6    srcs = ["coverage.sh"],
7    data = [
8        "@genhtml//file:genhtml",
9    ],
10)
11