// Copyright 2014 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.skyframe; import com.google.devtools.build.lib.analysis.config.BuildConfiguration; import com.google.devtools.build.lib.cmdline.Label; import com.google.devtools.build.lib.collect.nestedset.NestedSet; import com.google.devtools.build.lib.collect.nestedset.NestedSetBuilder; import com.google.devtools.build.lib.collect.nestedset.Order; import com.google.devtools.build.lib.concurrent.ThreadSafety.Immutable; import com.google.devtools.build.lib.concurrent.ThreadSafety.ThreadSafe; import com.google.devtools.build.lib.packages.NoSuchTargetException; import com.google.devtools.build.skyframe.SkyValue; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import javax.annotation.Nullable; /** * A transitive target reference that, when built in skyframe, loads the entire * transitive closure of a target. * *

Note that this class drops transitive targets during serialization! */ @Immutable @ThreadSafe public class TransitiveTargetValue implements SkyValue { // Non-final for serialization purposes. private NestedSet

This provides the basis for rule-scoped configurations. For example, Java-related build * flags have nothing to do with C++. So changing a Java flag shouldn't invalidate a C++ rule * (unless it has transitive dependencies on other Java rules). Likewise, a C++ rule shouldn't * fail because the Java configuration doesn't recognize the chosen architecture. * *

The general principle is that a rule can be influenced by the configuration parameters it * directly uses and the configuration parameters its transitive dependencies use (since it * reads its dependencies as part of analysis). So we need to 1) determine which configuration * fragments provide these parameters, 2) load those fragments, then 3) create a configuration * from them to feed the rule's configured target. This provides the first step. * *

See * {@link com.google.devtools.build.lib.packages.RuleClass.Builder#requiresConfigurationFragments} */ public NestedSet> getTransitiveConfigFragments() { return transitiveConfigFragments; } }