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

Unified Diff: gyp/find.py

Issue 1144973003: Sort build files for consistent link order. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 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
« 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: gyp/find.py
diff --git a/gyp/find.py b/gyp/find.py
index a5f40db1803abd1711c0b83e14384bc5d5f5a81b..247a576228054605aa457dca8fbcfffab3c9f24d 100644
--- a/gyp/find.py
+++ b/gyp/find.py
@@ -17,6 +17,7 @@ import os
import sys
for d, kids, files in os.walk(sys.argv[1]):
+ files.sort()
for f in files:
if fnmatch.fnmatch(f, sys.argv[2]):
print os.path.join(d, f).replace('\\', '/') # Gyp wants Unix paths.
« 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