C++: More ctx removal from CppLinkActionBuilder
RELNOTES:
PiperOrigin-RevId: 241394422
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java b/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
index 7ec4b3e..37f682a 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/RuleContext.java
@@ -34,6 +34,7 @@
import com.google.common.collect.Sets;
import com.google.devtools.build.lib.actions.Action;
import com.google.devtools.build.lib.actions.ActionAnalysisMetadata;
+import com.google.devtools.build.lib.actions.ActionKeyContext;
import com.google.devtools.build.lib.actions.ActionLookupValue;
import com.google.devtools.build.lib.actions.ActionOwner;
import com.google.devtools.build.lib.actions.ActionRegistry;
@@ -415,6 +416,16 @@
}
/**
+ * We have to re-implement this method here because it is declared in the interface {@link
+ * ActionConstructionContext}. This class inherits from {@link TargetContext} which doesn't
+ * implement the {@link ActionConstructionContext} interface.
+ */
+ @Override
+ public ActionKeyContext getActionKeyContext() {
+ return super.getActionKeyContext();
+ }
+
+ /**
* An opaque symbol generator to be used when identifying objects by their action owner/index of
* creation. Only needed if an object needs to know whether it was created by the same action
* owner in the same order as another object. Each symbol must call {@link
@@ -492,7 +503,9 @@
}
public ImmutableList<Artifact> getBuildInfo(BuildInfoKey key) throws InterruptedException {
- return getAnalysisEnvironment().getBuildInfo(this, key, getConfiguration());
+ return getAnalysisEnvironment()
+ .getBuildInfo(
+ AnalysisUtils.isStampingEnabled(this, getConfiguration()), key, getConfiguration());
}
@VisibleForTesting