• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
2
3package(
4    default_applicable_licenses = ["//:license"],
5    default_visibility =
6        ["//:__subpackages__"],
7)
8
9licenses(["notice"])
10
11filegroup(
12    name = "all_files",
13    srcs = glob(["**"]),
14)
15
16bzl_library(
17    name = "bzl",
18    srcs = glob(["*.bzl"]),
19)
20