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

Unified Diff: tools/gn/ninja_target_writer.cc

Issue 1494883002: GN: Makes GN output deterministic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Tweaked some comments for clarity Created 5 years 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
Index: tools/gn/ninja_target_writer.cc
diff --git a/tools/gn/ninja_target_writer.cc b/tools/gn/ninja_target_writer.cc
index 76413076685207938ec73c2bd9d192ae0efa8f16..2086d47557d32dca50cb8ddb4a19df16863e788c 100644
--- a/tools/gn/ninja_target_writer.cc
+++ b/tools/gn/ninja_target_writer.cc
@@ -207,14 +207,13 @@ OutputFile NinjaTargetWriter::WriteInputDepsStampAndGetDep(
}
// The different souces of input deps may duplicate some targets, so uniquify
- // them (ordering doesn't matter for this case).
+ // them. Note that the order matters, or the output is non-deterministic.
std::set<const Target*> unique_deps;
// Hard dependencies that are direct or indirect dependencies.
const std::set<const Target*>& hard_deps = target_->recursive_hard_deps();
M-A Ruel 2015/12/07 15:09:50 Use the copy-constructor to save an empty initiali
brettw 2015/12/07 18:48:54 We don't have to micro-optimize, but in the GN cod
Zachary Forman 2015/12/08 09:40:42 Nice approach, and probably scales better too. Pre
- for (const auto& dep : hard_deps)
- unique_deps.insert(dep);
+ unique_deps.insert(hard_deps.begin(), hard_deps.end());
// Extra hard dependencies passed in.
unique_deps.insert(extra_hard_deps.begin(), extra_hard_deps.end());
@@ -226,7 +225,15 @@ OutputFile NinjaTargetWriter::WriteInputDepsStampAndGetDep(
for (const auto& toolchain_dep : toolchain_deps)
unique_deps.insert(toolchain_dep.ptr);
- for (const auto& dep : unique_deps) {
+ // Sort the dependencies so they're in deterministic order.
+ std::vector<const Target*> sorted_deps(unique_deps.begin(),
+ unique_deps.end());
+
+ std::sort(
+ sorted_deps.begin(), sorted_deps.end(),
+ [](const Target* a, const Target* b) { return a->label() < b->label(); });
+
+ for (const auto& dep : sorted_deps) {
DCHECK(!dep->dependency_output_file().value().empty());
out_ << " ";
path_output_.WriteFile(out_, dep->dependency_output_file());

Powered by Google App Engine
This is Rietveld 408576698