From ca8430208de9db1b9ef548014942549e7136682d Mon Sep 17 00:00:00 2001 From: Henrik Kjellander Date: Tue, 9 Jun 2015 10:51:22 +0200 Subject: [PATCH] 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} --- DEPS | 2 +- setup_links.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/DEPS b/DEPS index 370bfc7d70..5dadb92e6a 100644 --- a/DEPS +++ b/DEPS @@ -6,7 +6,7 @@ vars = { 'extra_gyp_flag': '-Dextra_gyp_flag=0', 'chromium_git': 'https://chromium.googlesource.com', - 'chromium_revision': '3d86a83beda22d1421378752265ca1616da236e6', + 'chromium_revision': 'b2c6a8612f762f45671fb87331e89552e561833a', } # NOTE: Prefer revision numbers to tags for svn deps. Use http rather than 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,