Skip to content

Commit

Permalink
Add whitelist file for starlark transitions
Browse files Browse the repository at this point in the history
Whitelist all the things!

Closes #7535.

PiperOrigin-RevId: 236130176
  • Loading branch information
juliexxia authored and copybara-github committed Feb 28, 2019
1 parent 2d7c0ff commit 8536172
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions tools/whitelists/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ filegroup(
srcs = [
"BUILD",
"//tools/whitelists/config_feature_flag:srcs",
"//tools/whitelists/function_transition_whitelist:srcs",
],
visibility = ["//tools:__pkg__"],
)
13 changes: 13 additions & 0 deletions tools/whitelists/function_transition_whitelist/BUILD
Original file line number Diff line number Diff line change
@@ -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__"],
)

0 comments on commit 8536172

Please sign in to comment.