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 deps = [ 18 "@rules_android//rules:common_bzl", 19 "@rules_android//rules/flags:bzl", 20 ], 21) 22