Index: tools/gn/command_desc.cc |
diff --git a/tools/gn/command_desc.cc b/tools/gn/command_desc.cc |
index 2f0268934b149c27a96eadaa56f3f38568fef021..fbcf97d5eb388af36da7f4e6442644b2fdfb1eaa 100644 |
--- a/tools/gn/command_desc.cc |
+++ b/tools/gn/command_desc.cc |
@@ -212,11 +212,11 @@ template<typename T> void OutputRecursiveTargetConfig( |
if (config) { |
// Source of this value is a config. |
out << " From " << config->label().GetUserVisibleName(false) << "\n"; |
+ OutputSourceOfDep(target, config->label(), out); |
} else { |
// Source of this value is the target itself. |
out << " From " << target->label().GetUserVisibleName(false) << "\n"; |
} |
- OutputSourceOfDep(target, config->label(), out); |
} |
// Actual values. |