xref: /aosp_15_r20/external/bazelbuild-rules_android/rules/android_library/BUILD (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1# The android_library rule.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5licenses(["notice"])
6
7exports_files(["rule.bzl"])
8
9filegroup(
10    name = "all_files",
11    srcs = glob(["**"]),
12)
13
14bzl_library(
15    name = "bzl",
16    srcs = glob(["*.bzl"]),
17    visibility = ["//rules:__pkg__"],
18    deps = [
19        "//rules:common_bzl",
20        "//rules/flags:bzl",
21    ],
22)
23