Bug 1349884 - Turn off ENABLE_INTL_API on Android/x86's all channel. r=snorp

Android/x86 runs xpcshell and a limited of mochitest.  These tests are already passed on m-c.

MozReview-Commit-ID: 7Qkqi0dYh95

--HG--
extra : rebase_source : 4cc064aea022a8ba17d9a78a1f36a612ab877898
This commit is contained in:
Makoto Kato 2017-03-27 16:39:44 +09:00
Родитель e7905e8e6d
Коммит a6e3f6a9cb
1 изменённых файлов: 6 добавлений и 1 удалений

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

@ -5306,7 +5306,12 @@ dnl ICU Support
dnl ========================================================
if test "$MOZ_WIDGET_TOOLKIT" != "android" -o -z "$RELEASE_OR_BETA"; then
_INTL_API=yes
dnl Disable ICU on android/x86 for testing on tier-1 platform
if test "$MOZ_WIDGET_TOOLKIT" = "android" -a "$CPU_ARCH" = "x86"; then
_INTL_API=no
else
_INTL_API=yes
fi
else
_INTL_API=no
fi