• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# The android_application rule.
2
3load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
4
5licenses(["notice"])
6
7exports_files([
8    "bundle_deploy.sh_template",
9    "feature_module_validation.sh",
10    "gen_android_feature_manifest.sh",
11    "gen_priority_android_feature_manifest.sh",
12    "rule.bzl",
13])
14
15filegroup(
16    name = "all_files",
17    srcs = glob(["**"]),
18)
19
20bzl_library(
21    name = "bzl",
22    srcs = glob(["*.bzl"]),
23    deps = [
24        "@rules_android//rules:common_bzl",
25        "@rules_android//rules/flags:bzl",
26    ],
27)
28