Commit 103ae3cf authored by samuong's avatar samuong Committed by Commit bot

[chromedriver] Drop support for M38 and add support for M41.

BUG=
TBR=stgao@chromium.org

Review URL: https://codereview.chromium.org/883743003

Cr-Commit-Position: refs/heads/master@{#313386}
parent e52b234b
...@@ -10,9 +10,9 @@ import urllib ...@@ -10,9 +10,9 @@ import urllib
import util import util
CHROME_38_REVISION = '289947'
CHROME_39_REVISION = '297063' CHROME_39_REVISION = '297063'
CHROME_40_REVISION = '303370' CHROME_40_REVISION = '303370'
CHROME_41_REVISION = '310968'
_SITE = 'http://commondatastorage.googleapis.com' _SITE = 'http://commondatastorage.googleapis.com'
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
namespace { namespace {
// This variable must be able to be found and parsed by the upload script. // This variable must be able to be found and parsed by the upload script.
const int kMinimumSupportedChromeVersion[] = {38, 0, 2125, 0}; const int kMinimumSupportedChromeVersion[] = {39, 0, 2171, 0};
} // namespace } // namespace
......
...@@ -191,9 +191,9 @@ def main(): ...@@ -191,9 +191,9 @@ def main():
latest_snapshot_revision = archive.GetLatestSnapshotVersion() latest_snapshot_revision = archive.GetLatestSnapshotVersion()
versions = [ versions = [
['HEAD', latest_snapshot_revision], ['HEAD', latest_snapshot_revision],
['41', archive.CHROME_41_REVISION],
['40', archive.CHROME_40_REVISION], ['40', archive.CHROME_40_REVISION],
['39', archive.CHROME_39_REVISION], ['39', archive.CHROME_39_REVISION]
['38', archive.CHROME_38_REVISION],
] ]
code = 0 code = 0
for version in versions: for version in versions:
......
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