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