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

Unified Diff: deps2git.py

Issue 1333493005: Make sure recursedeps is passed through to .DEPS.git. (Closed) Base URL: http://src.chromium.org/svn/trunk/tools/deps2git
Patch Set: Created 5 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 | « no previous file | deps_utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: deps2git.py
diff --git a/deps2git.py b/deps2git.py
index 381ef2c9a0fad064f8e30405dc4f3aedadfb34c0..7b7a4868a6ec57e20fef826d7fba78ddd8e68614 100755
--- a/deps2git.py
+++ b/deps2git.py
@@ -311,7 +311,7 @@ def main():
options = parser.parse_args()[0]
# Get the content of the DEPS file.
- deps, deps_os, include_rules, skip_child_includes, hooks, deps_vars = (
+ deps, deps_os, include_rules, skip_child_includes, hooks, deps_vars, recursedeps = (
deps_utils.GetDepsContent(options.deps))
if options.extra_rules and options.type:
@@ -428,7 +428,7 @@ def main():
# Write the DEPS file to disk.
deps_utils.WriteDeps(options.out, deps_vars, results.new_deps, deps_os,
- include_rules, skip_child_includes, hooks)
+ include_rules, skip_child_includes, hooks, recursedeps)
return 0
« no previous file with comments | « no previous file | deps_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698