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