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

Unified Diff: build/vs_toolchain.py

Issue 447183005: Use toolchain hash that's in buildtools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | « build/toolchain_vs2013.hash ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/vs_toolchain.py
diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py
index aa4fec2d1282f6b10aec944417b2d4139e62759d..b039ed01c6493d6ba62f9c8ff2e09786fbc44b5a 100644
--- a/build/vs_toolchain.py
+++ b/build/vs_toolchain.py
@@ -129,7 +129,8 @@ def CopyVsRuntimeDlls(output_dir, runtime_dirs):
def _GetDesiredVsToolchainHashes():
"""Load a list of SHA1s corresponding to the toolchains that we want installed
to build with."""
- sha1path = os.path.join(script_dir, 'toolchain_vs2013.hash')
+ sha1path = os.path.join(script_dir,
+ '..', 'buildtools', 'toolchain_vs2013.hash')
with open(sha1path, 'rb') as f:
return f.read().strip().splitlines()
« no previous file with comments | « build/toolchain_vs2013.hash ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698