Commit 807855a3 authored by gmanikpure's avatar gmanikpure Committed by Commit bot

[chromedriver] Drop support for M53 and add M56

BUG=

Review-Url: https://codereview.chromium.org/2515313003
Cr-Commit-Position: refs/heads/master@{#437728}
parent 7390e830
......@@ -9,7 +9,7 @@
namespace {
// This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {53, 0, 2785, 0};
const int kMinimumSupportedChromeVersion[] = {54, 0, 2840, 0};
} // namespace
......
......@@ -193,15 +193,15 @@ def main():
# Linux32 builds need to be special-cased, because 1) they are keyed by
# git hash rather than commit position, and 2) come from a different
# download site (so we can't just convert the commit position to a hash).
versions['56'] = '67002b0fdaa3123f10f96fa2f7965677d531db74'
versions['55'] = 'e9bc4e0245c9a1e570ed2cf8e12152b9122275f2'
versions['54'] = '13d140acdaa710770f42790044825b49f99e466c'
versions['53'] = 'ac799c2fd50b8fb62b7a8186ff78b025de5b8718'
# TODO(samuong): speculative fix for crbug.com/611886
os.environ['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox'
else:
versions['56'] = '433020'
versions['55'] = '423791'
versions['54'] = '414545'
versions['53'] = '403392'
code = 0
for version, revision in versions.iteritems():
if options.chrome_version and version != options.chrome_version:
......
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