Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(122)

Unified Diff: tools/gn/ninja_group_target_writer.cc

Issue 551703002: Fix group datadeps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/gn.gyp ('k') | tools/gn/ninja_group_target_writer_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/ninja_group_target_writer.cc
diff --git a/tools/gn/ninja_group_target_writer.cc b/tools/gn/ninja_group_target_writer.cc
index 6a02cf1eb023340b74e3966204c405777066f458..1b1c30057c1277cd0d66305ae7f589ba21d6dbc1 100644
--- a/tools/gn/ninja_group_target_writer.cc
+++ b/tools/gn/ninja_group_target_writer.cc
@@ -28,7 +28,7 @@ void NinjaGroupTargetWriter::Run() {
std::vector<OutputFile> data_output_files;
const LabelTargetVector& datadeps = target_->datadeps();
for (size_t i = 0; i < datadeps.size(); i++)
- data_output_files.push_back(deps[i].ptr->dependency_output_file());
+ data_output_files.push_back(datadeps[i].ptr->dependency_output_file());
WriteStampForTarget(output_files, data_output_files);
}
« no previous file with comments | « tools/gn/gn.gyp ('k') | tools/gn/ninja_group_target_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698