• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# The android_library rule.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5package(
6    default_applicable_licenses = ["//:license"],
7    default_visibility =
8        ["//:__subpackages__"],
9)
10
11licenses(["notice"])
12
13exports_files(["rule.bzl"])
14
15filegroup(
16    name = "all_files",
17    srcs = glob(["**"]),
18)
19
20bzl_library(
21    name = "bzl",
22    srcs = glob(["*.bzl"]),
23    deps = [
24        "//rules:common_bzl",
25        "//rules/flags:bzl",
26        "@bazel_skylib//rules:common_settings",
27    ],
28)
29