2007-05-23 20:08:44 +00:00
|
|
|
#! /bin/sh
|
2012-05-21 11:12:37 +00:00
|
|
|
# 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/.
|
2007-05-23 20:08:44 +00:00
|
|
|
|
2011-05-07 08:06:41 +00:00
|
|
|
MOZ_APP_BASENAME=Firefox
|
|
|
|
MOZ_APP_VENDOR=Mozilla
|
2007-05-23 20:08:44 +00:00
|
|
|
MOZ_UPDATER=1
|
|
|
|
MOZ_PHOENIX=1
|
2007-06-13 17:15:05 +00:00
|
|
|
|
2012-01-05 04:19:14 +00:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
|
|
|
if ! test "$HAVE_64BIT_OS"; then
|
2012-02-28 14:37:38 +00:00
|
|
|
MOZ_VERIFY_MAR_SIGNATURE=1
|
2012-01-05 04:19:14 +00:00
|
|
|
MOZ_MAINTENANCE_SERVICE=1
|
2012-12-11 00:23:09 +00:00
|
|
|
if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "aurora" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "beta" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "release"; then
|
|
|
|
if ! test "$MOZ_DEBUG"; then
|
|
|
|
MOZ_STUB_INSTALLER=1
|
|
|
|
fi
|
|
|
|
fi
|
2012-01-05 04:19:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2010-08-19 03:05:17 +00:00
|
|
|
MOZ_CHROME_FILE_FORMAT=omni
|
2013-09-30 20:09:28 +00:00
|
|
|
MOZ_DISABLE_EXPORT_JS=1
|
2007-05-23 20:08:44 +00:00
|
|
|
MOZ_SAFE_BROWSING=1
|
2012-10-11 17:34:09 +00:00
|
|
|
MOZ_SERVICES_COMMON=1
|
|
|
|
MOZ_SERVICES_CRYPTO=1
|
2013-01-15 03:09:13 +00:00
|
|
|
MOZ_SERVICES_HEALTHREPORT=1
|
2012-11-05 20:49:58 +00:00
|
|
|
MOZ_SERVICES_METRICS=1
|
2010-08-12 19:54:14 +00:00
|
|
|
MOZ_SERVICES_SYNC=1
|
2007-05-23 20:08:44 +00:00
|
|
|
MOZ_APP_VERSION=$FIREFOX_VERSION
|
2012-09-27 06:35:06 +00:00
|
|
|
MOZ_EXTENSIONS_DEFAULT=" gio"
|
2012-12-18 22:38:30 +00:00
|
|
|
# MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
|
|
|
|
# Changing MOZ_*BRANDING_DIRECTORY requires a clobber to ensure correct results,
|
|
|
|
# because branding dependencies are broken.
|
|
|
|
# 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
|
|
|
|
# "nightly" branding (until bug 659568 is fixed).
|
|
|
|
# For the mozilla-aurora repository, use "aurora".
|
|
|
|
MOZ_BRANDING_DIRECTORY=browser/branding/nightly
|
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
|
2011-11-22 07:05:59 +00:00
|
|
|
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
2012-12-18 22:38:30 +00:00
|
|
|
# This should usually be the same as the value MAR_CHANNEL_ID.
|
|
|
|
# If more than one ID is needed, then you should use a comma separated list
|
|
|
|
# of values.
|
|
|
|
ACCEPTED_MAR_CHANNEL_IDS=firefox-mozilla-central
|
|
|
|
# The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
|
|
|
|
MAR_CHANNEL_ID=firefox-mozilla-central
|
2011-11-22 07:05:59 +00:00
|
|
|
MOZ_PROFILE_MIGRATOR=1
|
|
|
|
MOZ_EXTENSION_MANAGER=1
|
2011-11-22 07:05:59 +00:00
|
|
|
MOZ_APP_STATIC_INI=1
|
2012-06-04 01:54:38 +00:00
|
|
|
MOZ_WEBAPP_RUNTIME=1
|
2012-07-12 11:53:08 +00:00
|
|
|
MOZ_MEDIA_NAVIGATOR=1
|
2013-03-17 07:02:54 +00:00
|
|
|
if test "$OS_TARGET" = "WINNT" -o "$OS_TARGET" = "Darwin"; then
|
|
|
|
MOZ_FOLD_LIBS=1
|
|
|
|
fi
|
2013-07-11 21:12:32 +00:00
|
|
|
MOZ_WEBGL_CONFORMANT=1
|
2013-09-27 18:38:14 +00:00
|
|
|
# Enable navigator.mozPay
|
|
|
|
MOZ_PAY=1
|
2013-10-15 19:57:27 +00:00
|
|
|
# Enable activities. These are used for FxOS developers currently.
|
|
|
|
MOZ_ACTIVITIES=1
|
2013-10-23 19:46:47 +00:00
|
|
|
MOZ_JSDOWNLOADS=1
|
2014-01-15 06:21:14 +00:00
|
|
|
MOZ_WEBM_ENCODER=1
|
2013-11-23 00:44:44 +00:00
|
|
|
# Enable exact rooting on desktop.
|
|
|
|
JSGC_USE_EXACT_ROOTING=1
|
2013-10-23 19:46:47 +00:00
|
|
|
|