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

Unified Diff: gclient.py

Issue 2809072: Don't sort dependencies by name anymore since it can be an issue for some kind of DEPS setup. (Closed)
Patch Set: Created 10 years, 5 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 | tests/gclient_smoketest.py » ('j') | 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 42a6938dd0c287836f24459eda8b508a9cf95e93..9a722f7253e3cee2844d2574631ad60ec65f7720 100644
--- a/gclient.py
+++ b/gclient.py
@@ -289,8 +289,6 @@ class Dependency(GClientKeywords):
if name in [s.name for s in self.dependencies]:
raise
self.dependencies.append(Dependency(self, name, url))
- # Sort by name.
- self.dependencies.sort(key=lambda x: x.name)
logging.info('Loaded: %s' % str(self))
def RunCommandRecursively(self, options, revision_overrides,
« no previous file with comments | « no previous file | tests/gclient_smoketest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698