• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2#   Blaze mobile-install aspect package.
3
4load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
5
6package(
7    default_applicable_licenses = ["//:license"],
8    default_visibility = ["//:__subpackages__"],
9)
10
11licenses(["notice"])
12
13exports_files(["mi.bzl"])
14
15filegroup(
16    name = "all_files",
17    srcs = glob(["**"]),
18)
19
20bzl_library(
21    name = "bzl",
22    srcs = glob(["**/*.bzl"]),
23    deps = [
24        "//rules:bzl",
25    ],
26)
27