aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/whitelists/config_feature_flag/BUILD
blob: 951777fbabf79aee48917fb13f7034b04dc065be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Description:
#   Package groups for restricting access to config_feature_flag to specific
#   packages, allowing for careful rollout as it is an experimental feature.

package_group(
    name = "config_feature_flag",
    packages = ["//..."],
)

filegroup(
    name = "srcs",
    srcs = glob(["**"]),
    visibility = ["//tools/whitelists:__pkg__"],
)