aboutsummaryrefslogtreecommitdiff
path: root/setup_links.py
diff options
context:
space:
mode:
authorHenrik Kjellander <kjellander@webrtc.org>2015-06-09 10:51:22 +0200
committerHenrik Kjellander <kjellander@webrtc.org>2015-06-09 08:51:32 +0000
commitca8430208de9db1b9ef548014942549e7136682d (patch)
tree949caf70e9200562f564f6101fe7a219b2bd1c51 /setup_links.py
parent8a8971820b86c3e68baf4abf1eaa153529160d8f (diff)
downloadwebrtc-ca8430208de9db1b9ef548014942549e7136682d.tar.gz
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}
Diffstat (limited to 'setup_links.py')
-rwxr-xr-xsetup_links.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/setup_links.py b/setup_links.py
index 992c03efc7..1edb7c238e 100755
--- a/setup_links.py
+++ b/setup_links.py
@@ -76,7 +76,8 @@ DIRECTORIES = [
]
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 @@ if 'android' in get_target_os_list():
'tools/grit',
'tools/relocation_packer'
]
+if 'ios' in target_os:
+ DIRECTORIES.append('third_party/class-dump')
FILES = {
'tools/find_depot_tools.py': None,