aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java
index 1ddbff3789..91ab7d89f1 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppModel.java
@@ -124,9 +124,9 @@ public final class CppModel {
/**
* Adds a single source file to be compiled. Note that this should only be called for primary
- * compilation units, not for header files or files that are otherwise included.
+ * compilation units, including module files or headers to be parsed or preprocessed.
*/
- public CppModel addSources(Iterable<Artifact> sourceFiles, Label sourceLabel) {
+ public CppModel addCompilationUnitSources(Iterable<Artifact> sourceFiles, Label sourceLabel) {
for (Artifact sourceFile : sourceFiles) {
this.sourceFiles.add(Pair.of(sourceFile, sourceLabel));
}
@@ -134,10 +134,10 @@ public final class CppModel {
}
/**
- * Adds all the source files. Note that this should only be called for primary compilation units,
- * not for header files or files that are otherwise included.
+ * Adds all the source files. Note that this should only be called for primary
+ * compilation units, including module files or headers to be parsed or preprocessed.
*/
- public CppModel addSources(Iterable<Pair<Artifact, Label>> sources) {
+ public CppModel addCompilationUnitSources(Iterable<Pair<Artifact, Label>> sources) {
Iterables.addAll(this.sourceFiles, sources);
return this;
}