From f14d447cb56aee563f6e686b8f5b086a3bb55d47 Mon Sep 17 00:00:00 2001 From: Julie <30670028+juliexxia@users.noreply.github.com> Date: Mon, 25 Feb 2019 17:41:58 -0500 Subject: [PATCH] Add whitelist file for starlark transitions Whitelist all the things! --- tools/function_transition_whitelist/BUILD | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tools/function_transition_whitelist/BUILD diff --git a/tools/function_transition_whitelist/BUILD b/tools/function_transition_whitelist/BUILD new file mode 100644 index 00000000000000..4e3f00ffd6836d --- /dev/null +++ b/tools/function_transition_whitelist/BUILD @@ -0,0 +1,13 @@ +# Description: +# Package group restricting access to starlark-defined transitions, allowing for careful rollout as it is an experimental feature. + +package_group( + name = "function_transition_whitelist", + packages = ["//..."], +) + +filegroup( + name = "srcs", + srcs = glob(["**"]), + visibility = ["//tools/whitelists:__pkg__"], +)