• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Demonstrate the generate_sbom rule
2
3load("@rules_license//rules:sbom.bzl", "generate_sbom")
4
5# There are not a lot of targets in this rule set to build a SBOM from
6# so we will (in a very self-referential way) generate one for the tool
7# which generates the SBOMs
8# See the output in bazel-bin/examples/sboms/write_sbom.txt
9generate_sbom(
10    name = "write_sbom_sbom",
11    out = "write_sbom.txt",
12    deps = ["//tools:write_sbom"],
13)
14