Index: tools/gn/ninja_create_bundle_target_writer.cc |
diff --git a/tools/gn/ninja_create_bundle_target_writer.cc b/tools/gn/ninja_create_bundle_target_writer.cc |
index d85f2401ae52209051ba4444d7a6aec51c73a419..e1aec0d260af520189025baa77ddcc2b0e156778 100644 |
--- a/tools/gn/ninja_create_bundle_target_writer.cc |
+++ b/tools/gn/ninja_create_bundle_target_writer.cc |
@@ -116,4 +116,12 @@ void NinjaCreateBundleTargetWriter::Run() { |
for (const auto& pair : target_->data_deps()) |
order_only_deps.push_back(pair.ptr->dependency_output_file()); |
WriteStampForTarget(output_files, order_only_deps); |
+ |
+ out_ << "build "; |
brettw
2016/04/21 19:14:00
Can you write a comment here mentioning what this
Robert Sesek
2016/04/21 21:03:20
Done.
|
+ path_output_.WriteFile( |
+ out_, |
+ OutputFile(settings_->build_settings(), |
+ target_->bundle_data().GetBundleRootDirOutput(settings_))); |
+ out_ << ": phony " << target_->dependency_output_file().value(); |
+ out_ << std::endl; |
} |