aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.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/FdoSupport.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/FdoSupport.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.java
index e86514e199..7f19208e98 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/FdoSupport.java
@@ -116,12 +116,12 @@ import java.util.zip.ZipFile;
* .gcda files are added, too.
* </ul>
*
- * <p>If we do LIPO, the actual {@code CcCompilationInfo} for LIPO compilation actions is pieced
- * together from the {@code CcCompilationInfo} in LipoContextProvider and that of the rule being
- * compiled. (see {@link CcCompilationInfo#mergeForLipo}) This is so that the include files for the
- * extra LIPO sources are found and is, strictly speaking, incorrect, since it also changes the
- * declared include directories of the main source file, which in theory can result in the
- * compilation passing even though it should fail with undeclared inclusion errors.
+ * <p>If we do LIPO, the actual {@code CcCompilationContextInfo} for LIPO compilation actions is
+ * pieced together from the {@code CcCompilationContextInfo} in LipoContextProvider and that of the
+ * rule being compiled. (see {@link CcCompilationContextInfo#mergeForLipo}) This is so that the
+ * include files for the extra LIPO sources are found and is, strictly speaking, incorrect, since it
+ * also changes the declared include directories of the main source file, which in theory can result
+ * in the compilation passing even though it should fail with undeclared inclusion errors.
*
* <p>During the actual execution of the C++ compile action, the extra sources also need to be
* include scanned, which is the reason why they are {@link IncludeScannable} objects and not simple