aboutsummaryrefslogtreecommitdiff
path: root/rules/aar_import/BUILD
blob: 50d41feb2bfce1612a5a93ce4116394157a5a971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# The aar_import rule.

load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

licenses(["notice"])

exports_files(["rule.bzl"])

filegroup(
    name = "all_files",
    srcs = glob(["**"]),
)

bzl_library(
    name = "bzl",
    srcs = glob(["*.bzl"]),
    deps = [
        "@rules_android//rules:common_bzl",
        "@rules_android//rules/flags:bzl",
    ],
)