xref: /aosp_15_r20/external/bazelbuild-rules_android/rules/android_sandboxed_sdk/BUILD (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1# Android Sandboxed SDK rules.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5licenses(["notice"])
6
7exports_files([
8    "android_sandboxed_sdk.bzl",
9    "android_sandboxed_sdk_bundle.bzl",
10])
11
12filegroup(
13    name = "all_files",
14    srcs = glob(["**"]),
15)
16
17bzl_library(
18    name = "bzl",
19    srcs = glob(["*.bzl"]),
20    visibility = ["//rules:__pkg__"],
21    deps = [
22        "//rules:android_binary_bzl",
23        "//rules:common_bzl",
24    ],
25)
26