Chromium Code Reviews| Index: build/vs_toolchain.py |
| diff --git a/build/vs_toolchain.py b/build/vs_toolchain.py |
| index ed0042b8786d3135becb310bc2478ef05c5078f7..50854b0faa881f7f3f10cdf19846faa89c3e4632 100755 |
| --- a/build/vs_toolchain.py |
| +++ b/build/vs_toolchain.py |
| @@ -184,6 +184,9 @@ def _CopyRuntime(target_dir, source_dir, target_cpu, debug): |
| suffix = "d.dll" if debug else ".dll" |
| if GetVisualStudioVersion() == '2015': |
| _CopyRuntime2015(target_dir, source_dir, '%s140' + suffix) |
| + if debug: |
| + _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbased.dll'), |
| + os.path.join(source_dir, 'ucrtbased.dll')) |
| else: |
| _CopyRuntime2013(target_dir, source_dir, 'msvc%s120' + suffix) |
| @@ -262,7 +265,7 @@ def _GetDesiredVsToolchainHashes(): |
| """Load a list of SHA1s corresponding to the toolchains that we want installed |
| to build with.""" |
| if GetVisualStudioVersion() == '2015': |
| - return ['17c7ddb3595be5c6b9c98b6f930adad7e4456671'] # Update 1 |
| + return ['524956ec6e64e68fead3773e3ce318537657b404'] # Update 1 with Debuggers, UCRT installers and ucrtbased.dll |
|
scottmg
2016/01/15 19:19:45
80 col
|
| else: |
| # Default to VS2013. |
| return ['9ff97c632ae1fee0c98bcd53e71770eb3a0d8deb'] |