Commit bfb3bf87 authored by Rohit Rao's avatar Rohit Rao Committed by Commit Bot

Use a DEPS var for the pinned revision for ios/third_party/webkit/src.

This will allow us to use the autoroller to update the pinned revision.
It will also allow developers to use a "custom_vars" entry in their
.gclient file to set this to refs/heads/master if they need to develop
against ToT locally.

BUG=None

Change-Id: I5e506cb12de5e8ceb9b5883750169163ba09adf5
Reviewed-on: https://chromium-review.googlesource.com/c/1474818Reviewed-by: default avatarMichael Moss <mmoss@chromium.org>
Commit-Queue: Rohit Rao <rohitrao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#632707}
parent c456ee15
...@@ -274,6 +274,10 @@ vars = { ...@@ -274,6 +274,10 @@ vars = {
# the commit queue can handle CLs rolling libunwind # the commit queue can handle CLs rolling libunwind
# and whatever else without interference from each other. # and whatever else without interference from each other.
"libunwind_revision": "69d9b84cca8354117b9fe9705a4430d789ee599b", "libunwind_revision": "69d9b84cca8354117b9fe9705a4430d789ee599b",
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other.
"ios_webkit_revision": "59e9de61b7b36507836fa8b098e8839d7d995b13",
} }
# Only these hosts are allowed for dependencies in this DEPS file. # Only these hosts are allowed for dependencies in this DEPS file.
...@@ -452,7 +456,8 @@ deps = { ...@@ -452,7 +456,8 @@ deps = {
}, },
'src/ios/third_party/webkit/src': { 'src/ios/third_party/webkit/src': {
'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + '@' + 'c56dd8a91c62afcfd0de4a5fe6dbb46484ea1fb5', 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' +
'@' + Var('ios_webkit_revision'),
'condition': 'checkout_ios and checkout_ios_webkit' 'condition': 'checkout_ios and checkout_ios_webkit'
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment