1# The android_binary_internal rule.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5licenses(["notice"])
6
7filegroup(
8 name = "all_files",
9 srcs = glob(["**"]),
10)
11
12bzl_library(
13 name = "bzl",
14 srcs = glob(["*.bzl"]),
15 deps = [
16 "//rules:common_bzl",
17 ],
18)
19