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

Unified Diff: gclient.py

Issue 1849613003: add support for custom_vars in recursive dependencies (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: removed change-id from commit message Created 4 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient.py
diff --git a/gclient.py b/gclient.py
index c240d471941c96886307b36ee3fcef0392752f4b..528aadfcfd1c113eba72aaf150979fd2e8bb947c 100755
--- a/gclient.py
+++ b/gclient.py
@@ -709,7 +709,7 @@ class Dependency(gclient_utils.WorkItem, DependencySettings):
for name, url in deps.iteritems():
should_process = self.recursion_limit and self.should_process
deps_to_add.append(Dependency(
- self, name, url, None, None, None, None, None,
+ self, name, url, None, None, None, self.custom_vars, None,
self.deps_file, should_process))
deps_to_add.sort(key=lambda x: x.name)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698