// Copyright 2017 The Bazel Authors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.devtools.build.lib.analysis.whitelisting; import static com.google.devtools.build.lib.packages.Attribute.attr; import static com.google.devtools.build.lib.packages.BuildType.LABEL; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.analysis.PackageSpecificationProvider; import com.google.devtools.build.lib.analysis.RuleContext; import com.google.devtools.build.lib.analysis.TransitiveInfoCollection; import com.google.devtools.build.lib.analysis.config.HostTransition; import com.google.devtools.build.lib.analysis.configuredtargets.RuleConfiguredTarget.Mode; import com.google.devtools.build.lib.cmdline.Label; import com.google.devtools.build.lib.packages.Attribute; /** * Class used for implementing whitelists using package groups. * *

To use add an attribute {@link getAttributeFromWhitelistName(String,Label) to the rule class * which needs the whitelisting mechanism and use {@link isAvailable(RuleContext,String)} to check * during analysis if a rule is present */ public final class Whitelist { private Whitelist() {} /** * Returns an Attribute.Builder that can be used to add an implicit attribute to a rule containing * a package group whitelist. * * @param whitelistName The name of the whitelist. This has to comply with attribute naming * standards and will be used as a suffix for the attribute name. */ public static Attribute.Builder