2007-05-23 13:08:44 -07:00
|
|
|
#! /bin/sh
|
2012-05-21 04:12:37 -07: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 13:08:44 -07:00
|
|
|
|
2011-05-07 01:06:41 -07:00
|
|
|
MOZ_APP_BASENAME=Firefox
|
|
|
|
MOZ_APP_VENDOR=Mozilla
|
2007-05-23 13:08:44 -07:00
|
|
|
MOZ_UPDATER=1
|
|
|
|
MOZ_PHOENIX=1
|
2007-06-13 10:15:05 -07:00
|
|
|
|
2012-01-04 20:19:14 -08:00
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
|
|
|
if ! test "$HAVE_64BIT_OS"; then
|
2012-02-28 06:37:38 -08:00
|
|
|
MOZ_VERIFY_MAR_SIGNATURE=1
|
2012-01-04 20:19:14 -08:00
|
|
|
MOZ_MAINTENANCE_SERVICE=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2010-08-18 20:05:17 -07:00
|
|
|
MOZ_CHROME_FILE_FORMAT=omni
|
2007-05-23 13:08:44 -07:00
|
|
|
MOZ_SAFE_BROWSING=1
|
2012-06-22 09:27:01 -07:00
|
|
|
MOZ_SERVICES_AITC=1
|
|
|
|
MOZ_SERVICES_NOTIFICATIONS=1
|
2010-08-12 12:54:14 -07:00
|
|
|
MOZ_SERVICES_SYNC=1
|
2007-05-23 13:08:44 -07:00
|
|
|
MOZ_APP_VERSION=$FIREFOX_VERSION
|
2010-08-23 10:34:29 -07:00
|
|
|
MOZ_EXTENSIONS_DEFAULT=" gnomevfs"
|
2007-05-23 13:08:44 -07:00
|
|
|
# MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
|
2012-02-27 16:28:22 -08:00
|
|
|
# Changing MOZ_*BRANDING_DIRECTORY requires a clobber to ensure correct results,
|
2011-04-13 00:03:43 -07:00
|
|
|
# because branding dependencies are broken.
|
2012-02-27 16:28:22 -08:00
|
|
|
# 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".
|
2009-09-04 05:27:49 -07:00
|
|
|
MOZ_BRANDING_DIRECTORY=browser/branding/nightly
|
2011-04-13 00:58:13 -07:00
|
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
|
2011-11-21 23:05:59 -08:00
|
|
|
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
2012-02-24 13:29:42 -08: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 "
|
2012-02-24 13:29:42 -08:00
|
|
|
MAR_CHANNEL_ID=firefox-mozilla-central
|
2011-11-21 23:05:59 -08:00
|
|
|
MOZ_PROFILE_MIGRATOR=1
|
|
|
|
MOZ_EXTENSION_MANAGER=1
|
2011-11-21 23:05:59 -08:00
|
|
|
MOZ_APP_STATIC_INI=1
|
2012-06-03 18:54:38 -07:00
|
|
|
MOZ_WEBAPP_RUNTIME=1
|
2012-07-12 04:53:08 -07:00
|
|
|
MOZ_MEDIA_NAVIGATOR=1
|