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/1474818
Reviewed-by: Michael Moss <[email protected]>
Commit-Queue: Rohit Rao <[email protected]>
Cr-Commit-Position: refs/heads/master@{#632707}
diff --git a/DEPS b/DEPS
index f00c879..979027ee 100644
--- a/DEPS
+++ b/DEPS
@@ -274,6 +274,10 @@
# the commit queue can handle CLs rolling libunwind
# and whatever else without interference from each other.
"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.
@@ -452,7 +456,8 @@
},
'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'
},