// Copyright 2016 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.packages; import com.google.common.base.Function; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.devtools.build.lib.cmdline.Label; import com.google.devtools.build.lib.skylarkinterface.SkylarkModule; import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory; import com.google.devtools.build.lib.skylarkinterface.SkylarkPrinter; import com.google.devtools.build.lib.syntax.BaseFunction; import com.google.devtools.build.lib.syntax.Environment; import com.google.devtools.build.lib.syntax.Type; import com.google.devtools.build.lib.util.Preconditions; import java.util.Arrays; import java.util.List; /** A Skylark value that is a result of an 'aspect(..)' function call. */ @SkylarkModule( name = "Aspect", category = SkylarkModuleCategory.NONE, doc = "For more information about Aspects, please consult the " + "documentation of the aspect function or the " + "introduction to Aspects." ) public class SkylarkAspect implements SkylarkExportable { private final BaseFunction implementation; private final ImmutableList attributeAspects; private final ImmutableList attributes; private final ImmutableList> requiredAspectProviders; private final ImmutableSet provides; private final ImmutableSet paramAttributes; private final ImmutableSet fragments; private final ImmutableSet hostFragments; private final ImmutableList