blob: 56ed34620bf9a2050b0f4396165beecc860a076e [file] [log] [blame]
UebelAndre82fdfd92020-10-14 11:54:44 -07001load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
Marcel Hlopkoacfce012021-02-03 09:11:48 +01002load(":platform.bzl", "declare_config_settings")
Alex McArther5ec0b832018-10-24 17:45:58 -07003
UebelAndreb798f142020-09-09 11:11:19 -07004package(default_visibility = ["//visibility:public"])
5
Alex McArther5ec0b832018-10-24 17:45:58 -07006declare_config_settings()
John Edmonds7cde1e42019-10-31 10:34:25 -07007
8package_group(
UebelAndre129605e2021-02-17 11:59:46 -08009 name = "function_transition_allowlist",
John Edmonds7cde1e42019-10-31 10:34:25 -070010 packages = [
11 "//...",
12 ],
13)
UebelAndre82fdfd92020-10-14 11:54:44 -070014
15bzl_library(
UebelAndre5ba526e2022-01-10 06:26:05 -080016 name = "bzl_lib",
UebelAndre82fdfd92020-10-14 11:54:44 -070017 srcs = glob(["**/*.bzl"]),
Marcel Hlopkoacfce012021-02-03 09:11:48 +010018 visibility = ["//rust:__subpackages__"],
UebelAndre82fdfd92020-10-14 11:54:44 -070019)