win toolchain: Remove some old MSVS 2013 references.

We used to use this many years ago.

Bug: none
Change-Id: I1df268c793bbfe7423ecf86ea99ebbe918e280d0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2658676
Auto-Submit: Nico Weber <thakis@chromium.org>
Commit-Queue: Bruce Dawson <brucedawson@chromium.org>
Reviewed-by: Bruce Dawson <brucedawson@chromium.org>
diff --git a/win_toolchain/get_toolchain_if_necessary.py b/win_toolchain/get_toolchain_if_necessary.py
index 24270c8..261f6cd 100755
--- a/win_toolchain/get_toolchain_if_necessary.py
+++ b/win_toolchain/get_toolchain_if_necessary.py
@@ -16,14 +16,6 @@
 require maintaining scripts that can build older not-up-to-date revisions of
 the toolchain. This is likely to be a poorly tested code path that probably
 won't be properly maintained. See http://crbug.com/323300.
-
-This does not extend to major versions of the toolchain however, on the
-assumption that there are more likely to be source incompatibilities between
-major revisions. This script calls a subscript (currently, toolchain2013.py)
-to do the main work. It is expected that toolchain2013.py will always be able
-to acquire/build the most current revision of a VS2013-based toolchain. In the
-future when a hypothetical VS2015 is released, the 2013 script will be
-maintained, and a new 2015 script would be added.
 """
 
 from __future__ import print_function
@@ -488,10 +480,7 @@
 
   # Move to depot_tools\win_toolchain where we'll store our files, and where
   # the downloader script is.
-  if os.environ.get('GYP_MSVS_VERSION') == '2013':
-    target_dir = 'vs2013_files'
-  else:
-    target_dir = 'vs_files'
+  target_dir = 'vs_files'
   if not os.path.isdir(target_dir):
     os.mkdir(target_dir)
   toolchain_target_dir = os.path.join(target_dir, desired_hash)