Update other bot tools.

Also document what versions of everything we're using as the .sha1 files
don't say.

Change-Id: I2d496c86761f6df6acd20e1af62094b7d89e5c1d
Reviewed-on: https://boringssl-review.googlesource.com/17485
Reviewed-by: Steven Valdez <svaldez@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
diff --git a/util/bot/DEPS b/util/bot/DEPS
index 0e1b7dc..ccaf75d 100644
--- a/util/bot/DEPS
+++ b/util/bot/DEPS
@@ -24,7 +24,7 @@
 deps_os = {
   'android': {
     'boringssl/util/bot/android_tools':
-      Var('chromium_git') + '/android_tools.git' + '@' + '023e2f65409a2b7886b8d644d6a88542ead6cd0a',
+      Var('chromium_git') + '/android_tools.git' + '@' + 'e9d4018e149d50172ed462a7c21137aa915940ec',
   },
   'unix': {
     'boringssl/util/bot/libFuzzer':
diff --git a/util/bot/UPDATING b/util/bot/UPDATING
index 8938abe..43aa30a 100644
--- a/util/bot/UPDATING
+++ b/util/bot/UPDATING
@@ -29,26 +29,38 @@
         ./bootstrap --prefix=$PWD/cmake-linux64 && make && make install
         tar -czf cmake-linux64.tar.gz cmake-linux64/
 
+    The current revision was built against cmake-3.5.0.tar.gz.
+
 cmake-mac.tar.gz: Follow the same instructions as above on a Mac, but replace
     cmake-linux64 with cmake-mac.
 
+    The current revision was built against cmake-3.5.0.tar.gz.
+
 cmake-win32.zip: Update to the latest prebuilt release of CMake, found at
     https://cmake.org/download/. Use the file labeled "Windows ZIP". The
     download will be named cmake-VERSION-win32-x86.zip.
 
+    The current revision is cmake-3.5.0-win32-x86.zip.
+
 perl-win32.zip: Update to the latest 32-bit prebuilt "PortableZip" edition of
     Strawberry Perl, found at http://strawberryperl.com/releases.html. The
     download will be named strawberry-perl-VERSION-32bit-portable.zip.
 
+    The current revision is strawberry-perl-5.22.1.2-32bit-portable.zip.
+
 yasm-win32.exe: Update to the appropriate release of Yasm. Use the same version
     as Chromium, found at
     https://chromium.googlesource.com/chromium/src/+/master/third_party/yasm/README.chromium
     Use the release at http://yasm.tortall.net/Download.html labeled
     "Win32 .exe". The download will be named yasm-VERSION-win32.exe.
 
+    The current revision is yasm-1.2.0-win32.exe.
+
 Finally, update sde-linux64.tar.bz2 by downloading the latet release from intel
 at
 https://software.intel.com/en-us/articles/intel-software-development-emulator,
 but upload it with the following command. (Note the bucket is different.)
 
     upload_to_google_storage.py -b chrome-boringssl-sde sde-linux64.tar.bz2
+
+The current revision is sde-external-8.5.0-2017-06-08-lin.tar.bz2.
diff --git a/util/bot/update_clang.py b/util/bot/update_clang.py
index 3fd59a3..3ba423d 100644
--- a/util/bot/update_clang.py
+++ b/util/bot/update_clang.py
@@ -22,8 +22,8 @@
 # CLANG_REVISION and CLANG_SUB_REVISION determine the build of clang
 # to use. These should be synced with tools/clang/scripts/update.py in
 # Chromium.
-CLANG_REVISION = "305281"
-CLANG_SUB_REVISION = "1"
+CLANG_REVISION = "305735"
+CLANG_SUB_REVISION = "2"
 
 PACKAGE_VERSION = "%s-%s" % (CLANG_REVISION, CLANG_SUB_REVISION)
 LLVM_BUILD_DIR = os.path.join(os.path.dirname(__file__), "llvm-build")
diff --git a/util/bot/vs_toolchain.py b/util/bot/vs_toolchain.py
index 2e87272..d86f725 100644
--- a/util/bot/vs_toolchain.py
+++ b/util/bot/vs_toolchain.py
@@ -19,7 +19,7 @@
 
 
 TOOLCHAIN_VERSION = '2015'
-TOOLCHAIN_HASH = 'd3cb0e37bdd120ad0ac4650b674b09e81be45616'
+TOOLCHAIN_HASH = 'f53e4598951162bad6330f7a167486c7ae5db1e5'
 
 
 def SetEnvironmentAndGetRuntimeDllDirs():