1# Description: 2# The android_sdk_repository repository rule for using an Android SDK with Bazel. 3 4load("@bazel_skylib//:bzl_library.bzl", "bzl_library") 5 6bzl_library( 7 name = "bzl", 8 srcs = [ 9 "empty.template.bzl", 10 "helper.bzl", 11 "rule.bzl", 12 "template.bzl", 13 ], 14 visibility = ["//:__subpackages__"], 15 deps = [ 16 "//rules:android_revision_bzl", 17 ], 18) 19