aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java
index b3e8b56a92..f059510d91 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppLinkstampCompileHelper.java
@@ -143,8 +143,8 @@ public class CppLinkstampCompileHelper {
// TODO(b/34761650): Remove all this hardcoding by separating a full blown compile action.
Preconditions.checkArgument(
featureConfiguration.actionIsConfigured(CppCompileAction.LINKSTAMP_COMPILE));
- CcCompilationInfo ccCompilationInfo =
- new CcCompilationInfo.Builder(ruleContext)
+ CcCompilationContextInfo ccCompilationContextInfo =
+ new CcCompilationContextInfo.Builder(ruleContext)
.addIncludeDir(PathFragment.create("."))
.addDefines(
computeAllLinkstampDefines(
@@ -165,7 +165,7 @@ public class CppLinkstampCompileHelper {
/* gcnoFile= */ null,
/* dwoFile= */ null,
/* ltoIndexingFile= */ null,
- ccCompilationInfo,
+ ccCompilationContextInfo,
buildInfoHeaderArtifacts
.stream()
.map(Artifact::getExecPathString)