Index: tools/gn/path_output.cc |
diff --git a/tools/gn/path_output.cc b/tools/gn/path_output.cc |
index 5b333d8a16f4284803f70a81d0bba8f06cb708a3..711341fcd196a4986dae02afe8d8f36fddbb4d4d 100644 |
--- a/tools/gn/path_output.cc |
+++ b/tools/gn/path_output.cc |
@@ -83,6 +83,14 @@ void PathOutput::WriteFiles(std::ostream& out, |
} |
} |
+void PathOutput::WriteFiles(std::ostream& out, |
+ const UniqueVector<OutputFile>& files) const { |
+ for (const auto& file : files) { |
+ out << " "; |
+ WriteFile(out, file); |
+ } |
+} |
+ |
void PathOutput::WriteDir(std::ostream& out, |
const OutputFile& file, |
DirSlashEnding slash_ending) const { |