• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Starlark Resource Packaging for Android Rules.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5package(
6    default_visibility =
7        ["//third_party/bazel_rules/rules_android"],
8)
9
10licenses(["notice"])
11
12exports_files(["rule.bzl"])
13
14filegroup(
15    name = "all_files",
16    srcs = glob(["**"]),
17)
18
19bzl_library(
20    name = "bzl",
21    srcs = glob(["*.bzl"]),
22    deps = [
23        "@rules_android//rules:common_bzl",
24    ],
25)
26