Add latest version of Chrome for testing
Change-Id: I655f6a6f7fd2108391040c99f35118aa179dd43e
diff --git a/build.gradle b/build.gradle
index 12d14c9..7b0526b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -402,6 +402,7 @@
"third_party": [
"benchmarks/kotlin-benches",
"chrome/chrome_180917_ffbaa8",
+ "chrome/chrome_200430",
"classlib",
"cf_segments",
"desugar/desugar_20180308",
diff --git a/third_party/chrome/chrome_200430.tar.gz.sha1 b/third_party/chrome/chrome_200430.tar.gz.sha1
new file mode 100644
index 0000000..75c0b5a
--- /dev/null
+++ b/third_party/chrome/chrome_200430.tar.gz.sha1
@@ -0,0 +1 @@
+2c2b6b64f0b073effe22a5048b53ef69dd3a56fc
\ No newline at end of file
diff --git a/tools/chrome_data.py b/tools/chrome_data.py
index cf62ce3..81f2fc7 100644
--- a/tools/chrome_data.py
+++ b/tools/chrome_data.py
@@ -5,9 +5,11 @@
import os
import utils
+ANDROID_N_API = '24'
BASE = os.path.join(utils.THIRD_PARTY, 'chrome')
V180917_BASE = os.path.join(BASE, 'chrome_180917_ffbaa8')
+V200430_BASE = os.path.join(BASE, 'chrome_200430')
INPUT_JARS = [
'out/Release/gen/chrome/android/monochrome_public_apk/monochrome_public_apk.jar',
@@ -246,4 +248,12 @@
'libraries': [os.path.join(V180917_BASE, path) for path in LIBRARIES],
},
},
+ '200430': {
+ 'deploy' : {
+ 'inputs': [os.path.join(V200430_BASE, 'program.jar')],
+ 'pgconf': [os.path.join(V200430_BASE, 'proguard.config')],
+ 'libraries': [os.path.join(V200430_BASE, 'library.jar')],
+ 'min-api': ANDROID_N_API
+ },
+ },
}