2007-05-24 00:08:44 +04:00
|
|
|
#! /bin/sh
|
2012-05-21 15:12:37 +04: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-24 00:08:44 +04:00
|
|
|
|
2011-05-07 12:06:41 +04:00
|
|
|
MOZ_APP_BASENAME=Firefox
|
|
|
|
MOZ_APP_VENDOR=Mozilla
|
2007-05-24 00:08:44 +04:00
|
|
|
MOZ_UPDATER=1
|
|
|
|
MOZ_PHOENIX=1
|
2007-06-13 21:15:05 +04:00
|
|
|
|
2012-01-05 08:19:14 +04:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
2014-06-19 19:03:04 +04:00
|
|
|
MOZ_MAINTENANCE_SERVICE=1
|
2014-06-25 06:16:25 +04:00
|
|
|
if ! test "$HAVE_64BIT_BUILD"; then
|
2012-12-11 04:23:09 +04:00
|
|
|
if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "aurora" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "beta" -o \
|
2016-03-22 20:15:11 +03:00
|
|
|
"$MOZ_UPDATE_CHANNEL" = "beta-dev" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "release" -o \
|
|
|
|
"$MOZ_UPDATE_CHANNEL" = "release-dev"; then
|
2012-12-11 04:23:09 +04:00
|
|
|
if ! test "$MOZ_DEBUG"; then
|
|
|
|
MOZ_STUB_INSTALLER=1
|
|
|
|
fi
|
|
|
|
fi
|
2012-01-05 08:19:14 +04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2014-10-23 05:00:19 +04:00
|
|
|
# Enable building ./signmar and running libmar signature tests
|
|
|
|
MOZ_ENABLE_SIGNMAR=1
|
|
|
|
|
2007-05-24 00:08:44 +04:00
|
|
|
MOZ_SAFE_BROWSING=1
|
2012-10-11 21:34:09 +04:00
|
|
|
MOZ_SERVICES_COMMON=1
|
|
|
|
MOZ_SERVICES_CRYPTO=1
|
2013-01-15 07:09:13 +04:00
|
|
|
MOZ_SERVICES_HEALTHREPORT=1
|
2010-08-12 23:54:14 +04:00
|
|
|
MOZ_SERVICES_SYNC=1
|
2014-08-29 12:50:00 +04:00
|
|
|
MOZ_SERVICES_CLOUDSYNC=1
|
2007-05-24 00:08:44 +04:00
|
|
|
MOZ_APP_VERSION=$FIREFOX_VERSION
|
2015-07-12 04:37:54 +03:00
|
|
|
MOZ_APP_VERSION_DISPLAY=$FIREFOX_VERSION_DISPLAY
|
2012-09-27 10:35:06 +04:00
|
|
|
MOZ_EXTENSIONS_DEFAULT=" gio"
|
2012-12-19 02:38:30 +04:00
|
|
|
# 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
|
2015-05-28 17:03:23 +03:00
|
|
|
# "unofficial" branding.
|
2012-12-19 02:38:30 +04:00
|
|
|
# For the mozilla-aurora repository, use "aurora".
|
2015-05-28 17:03:23 +03:00
|
|
|
MOZ_BRANDING_DIRECTORY=browser/branding/unofficial
|
2012-12-19 02:38:30 +04:00
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
|
2011-11-22 11:05:59 +04:00
|
|
|
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
2012-12-19 02:38:30 +04: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 11:05:59 +04:00
|
|
|
MOZ_PROFILE_MIGRATOR=1
|
2011-11-22 11:05:59 +04:00
|
|
|
MOZ_APP_STATIC_INI=1
|
2013-07-12 01:12:32 +04:00
|
|
|
MOZ_WEBGL_CONFORMANT=1
|
2013-09-27 22:38:14 +04:00
|
|
|
# Enable navigator.mozPay
|
|
|
|
MOZ_PAY=1
|
2013-10-15 23:57:27 +04:00
|
|
|
# Enable activities. These are used for FxOS developers currently.
|
|
|
|
MOZ_ACTIVITIES=1
|
2013-10-23 23:46:47 +04:00
|
|
|
MOZ_JSDOWNLOADS=1
|
2015-11-03 03:40:00 +03:00
|
|
|
MOZ_RUST_MP4PARSE=1
|
2015-08-29 04:43:37 +03:00
|
|
|
|
2015-10-07 02:01:24 +03:00
|
|
|
# Include the DevTools client, not just the server (which is the default)
|
|
|
|
MOZ_DEVTOOLS=all
|