Bug 1370156 part 2 - Enable jumbo mode: in all Gradle builds; r=nalexander

MozReview-Commit-ID: HFc7rgl4765

--HG--
extra : rebase_source : 55b95b8e12a379e34c1f4ebaef93b3c5eba69ff9
This commit is contained in:
Teng-pao Yu 2017-06-08 15:23:28 +08:00
Родитель 0281242147
Коммит acf97062f9
1 изменённых файлов: 1 добавлений и 8 удалений

Просмотреть файл

@ -38,6 +38,7 @@ android {
dexOptions {
javaMaxHeapSize "2g"
jumboMode = true
}
lintOptions {
@ -45,14 +46,6 @@ android {
}
buildTypes {
// Bug 1367768: With current code, we need jumboMode for a string table larger than 65536.
// To not interrupt release 55 nightly to beta merge, jumboMode only applies to debug now
// and will apply to all builds very soon (Mid June 2017, see bug 1370156).
debug {
dexOptions {
jumboMode = true
}
}
// We have the following difficult situation. Minification (Proguard) is only available per
// Android-Gradle `buildType`. Instrumentation (Robocop) is only available for exactly one
// `buildType` (see Android-Gradle `testBuildType`, which defaults to "debug"). Local