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

Unified Diff: pylib/gyp/input.py

Issue 7067039: Add a "dump-json" generator that dumps the dependency graph. (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: Created 9 years, 7 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
« pylib/gyp/generator/dump-json.py ('K') | « pylib/gyp/generator/dump-json.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/input.py
diff --git a/pylib/gyp/input.py b/pylib/gyp/input.py
index 723183feb838764d8bc709cdc565daa12f6b25e2..fee2a16d539d0562b62baa943b238de3daea2393 100644
--- a/pylib/gyp/input.py
+++ b/pylib/gyp/input.py
@@ -2236,7 +2236,8 @@ def Load(build_files, variables, includes, depth, generator_input_info, check,
# Make sure static libraries don't declare dependencies on other static
# libraries, but that linkables depend on all unlinked static libraries
# that they need so that their link steps will be correct.
- AdjustStaticLibraryDependencies(flat_list, targets, dependency_nodes)
+ if generator_input_info['generator_wants_flattened_static_libraries']:
+ AdjustStaticLibraryDependencies(flat_list, targets, dependency_nodes)
# Apply "post"/"late"/"target" variable expansions and condition evaluations.
for target in flat_list:
« pylib/gyp/generator/dump-json.py ('K') | « pylib/gyp/generator/dump-json.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698