Backed out changeset bc9b9c1c8ab5 (bug 1723445) for causing GTest crashes.

CLOSED TREE
This commit is contained in:
Brindusan Cristian 2021-08-12 02:23:59 +03:00
Родитель c82dd541d9
Коммит bed8fb35ca
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -135,9 +135,9 @@ class BinaryPath {
#elif defined(ANDROID)
static nsresult Get(char aResult[MAXPATHLEN]) {
// On Android, we use the MOZ_ANDROID_LIBDIR variable that is set by the
// Java bootstrap code.
const char* greHome = getenv("MOZ_ANDROID_LIBDIR");
// On Android, we use the GRE_HOME variable that is set by the Java
// bootstrap code.
const char* greHome = getenv("GRE_HOME");
if (!greHome) {
return NS_ERROR_FAILURE;
}