60 lines
2 KiB
Bash
Executable file
60 lines
2 KiB
Bash
Executable file
#! /bin/sh
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
MOZ_APP_VENDOR=Mozilla
|
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
|
if ! test "$HAVE_64BIT_BUILD"; then
|
|
if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "nightly-try" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "aurora" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "beta" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "release"; then
|
|
if ! test "$MOZ_DEBUG"; then
|
|
if ! test "$USE_STUB_INSTALLER"; then
|
|
# Expect USE_STUB_INSTALLER from taskcluster for downstream task consistency
|
|
echo "ERROR: STUB installer expected to be enabled but"
|
|
echo "ERROR: USE_STUB_INSTALLER is not specified in the environment"
|
|
exit 1
|
|
fi
|
|
MOZ_STUB_INSTALLER=1
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
BROWSER_CHROME_URL=chrome://browser/content/browser.xhtml
|
|
|
|
# MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
|
|
# MOZ_BRANDING_DIRECTORY is the default branding directory used when none is
|
|
# specified. It should never point to the "official" branding directory.
|
|
# For mozilla-beta, mozilla-release, or mozilla-central repositories, use
|
|
# "unofficial" branding.
|
|
# For the mozilla-aurora repository, use "aurora".
|
|
MOZ_BRANDING_DIRECTORY=browser/branding/unofficial
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
|
|
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
|
|
|
MOZ_PROFILE_MIGRATOR=1
|
|
|
|
# Include the DevTools client, not just the server (which is the default)
|
|
MOZ_DEVTOOLS=all
|
|
# IceCat settings
|
|
MOZ_APP_BASENAME=IceCat
|
|
MOZ_APP_UA_NAME=Firefox
|
|
MOZ_APP_VENDOR=GNU
|
|
MOZ_APP_VERSION=128.14.0
|
|
MOZ_APP_PROFILE=mozilla/icecat
|
|
MOZ_PAY=0
|
|
MOZ_SERVICES_HEALTHREPORT=0
|
|
MOZ_SERVICES_HEALTHREPORTER=0
|
|
MOZ_SERVICES_FXACCOUNTS=0
|
|
MOZ_SERVICES_METRICS=0
|
|
MOZ_DATA_REPORTING=0
|
|
MOZ_NORMANDY=0
|
|
MOZ_SERVICES_SYNC=0
|
|
MOZ_DEVICES=0
|
|
MOZ_ANDROID_GOOGLE_PLAY_SERVICES=0
|
|
MOZ_ADDON_SIGNING=0
|