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

Unified Diff: win_toolchain/get_toolchain_if_necessary.py

Issue 2052533002: Update the VS toolchain hash computation caching. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 6 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: win_toolchain/get_toolchain_if_necessary.py
diff --git a/win_toolchain/get_toolchain_if_necessary.py b/win_toolchain/get_toolchain_if_necessary.py
index 37a3207d8836d5840a6630a3afe9f71d0bacd5aa..aa2cf738ea1c33f5e5fb1656d992e39d0f5a0235 100755
--- a/win_toolchain/get_toolchain_if_necessary.py
+++ b/win_toolchain/get_toolchain_if_necessary.py
@@ -88,7 +88,7 @@ def GetFileList(root):
for p in paths:
if any(ignored_dir in p.lower() for ignored_dir in ignored_directories):
continue
- file_list.append(p)
+ file_list.append(p.lower())
hans 2016/06/08 17:07:55 This would essentially undo https://codereview.chr
return sorted(file_list, key=lambda s: s.replace('/', '\\').lower())
« 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