Roll chromium_revision 3d86a83..b2c6a86 (332345:332773)

Add link to third_party/class-dump to support
https://codereview.chromium.org/1161813003

Relevant changes:
* src/testing/iossim/third_party/class-dump: 89bd408..None
* src/third_party/libvpx: 77656a4..654e661
Details: https://chromium.googlesource.com/chromium/src/+/3d86a83..b2c6a86/DEPS

Clang version was not updated in this roll.

R=pbos@webrtc.org

Review URL: https://codereview.webrtc.org/1145343009

Cr-Commit-Position: refs/heads/master@{#9398}
diff --git a/setup_links.py b/setup_links.py
index 992c03e..1edb7c2 100755
--- a/setup_links.py
+++ b/setup_links.py
@@ -76,7 +76,8 @@
 ]
 
 from sync_chromium import get_target_os_list
-if 'android' in get_target_os_list():
+target_os = get_target_os_list()
+if 'android' in target_os:
   DIRECTORIES += [
     'base',
     'third_party/android_testrunner',
@@ -95,6 +96,8 @@
     'tools/grit',
     'tools/relocation_packer'
   ]
+if 'ios' in target_os:
+  DIRECTORIES.append('third_party/class-dump')
 
 FILES = {
   'tools/find_depot_tools.py': None,