aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
diff options
context:
space:
mode:
authorGravatar plf <plf@google.com>2018-04-03 08:40:03 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-04-03 08:41:23 -0700
commit3f6c57b3a2c86444ce4be119f51578ab7198071e (patch)
tree2aae5015a0316d16a32f1d213e8f290131a78590 /src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
parent78ee50acf9999decfb8353243aa2ea2d5f2d8c50 (diff)
C++: Rename CcCompilationInfo to CcCompilationContextInfo.
This is done so that the name CcCompilationInfo can be used for the C++ provider that will wrap all providers for compilation, similar to JavaInfo in Java. RELNOTES:none PiperOrigin-RevId: 191445120
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
index a3aa127b07..0a35544599 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/FakeCppCompileAction.java
@@ -75,7 +75,7 @@ public class FakeCppCompileAction extends CppCompileAction {
PathFragment tempOutputFile,
DotdFile dotdFile,
ImmutableMap<String, String> localShellEnvironment,
- CcCompilationInfo ccCompilationInfo,
+ CcCompilationContextInfo ccCompilationContextInfo,
CoptsFilter nocopts,
Iterable<IncludeScannable> lipoScannables,
CppSemantics cppSemantics,
@@ -112,7 +112,7 @@ public class FakeCppCompileAction extends CppCompileAction {
// cc_fake_binary and for the negative compilation tests that depend on
// the cc_fake_binary, and the runfiles must be determined at analysis
// time, so they can't depend on the contents of the ".d" file.)
- CcCompilationInfo.disallowUndeclaredHeaders(ccCompilationInfo),
+ CcCompilationContextInfo.disallowUndeclaredHeaders(ccCompilationContextInfo),
nocopts,
lipoScannables,
ImmutableList.<Artifact>of(),