michael@0: #! /bin/sh michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: # file, You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: MOZ_APP_BASENAME=Firefox michael@0: MOZ_APP_VENDOR=Mozilla michael@0: MOZ_UPDATER=1 michael@0: MOZ_PHOENIX=1 michael@0: michael@0: MOZ_CHROME_FILE_FORMAT=omni michael@0: MOZ_DISABLE_EXPORT_JS=1 michael@0: MOZ_SAFE_BROWSING=1 michael@0: MOZ_SERVICES_COMMON=1 michael@0: MOZ_SERVICES_CRYPTO=1 michael@0: MOZ_SERVICES_FXACCOUNTS=1 michael@0: MOZ_SERVICES_HEALTHREPORT=1 michael@0: MOZ_SERVICES_METRICS=1 michael@0: MOZ_SERVICES_SYNC=1 michael@0: MOZ_APP_VERSION=$FIREFOX_VERSION michael@0: MOZ_EXTENSIONS_DEFAULT=" gio" michael@0: # MOZ_APP_DISPLAYNAME will be set by branding/configure.sh michael@0: # Changing MOZ_*BRANDING_DIRECTORY requires a clobber to ensure correct results, michael@0: # because branding dependencies are broken. michael@0: # MOZ_BRANDING_DIRECTORY is the default branding directory used when none is michael@0: # specified. It should never point to the "official" branding directory. michael@0: # For mozilla-beta, mozilla-release, or mozilla-central repositories, use michael@0: # "nightly" branding (until bug 659568 is fixed). michael@0: # For the mozilla-aurora repository, use "aurora". michael@0: MOZ_BRANDING_DIRECTORY=browser/branding/nightly michael@0: MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official michael@0: MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384} michael@0: # This should usually be the same as the value MAR_CHANNEL_ID. michael@0: # If more than one ID is needed, then you should use a comma separated list michael@0: # of values. michael@0: ACCEPTED_MAR_CHANNEL_IDS=torbrowser-torproject-release michael@0: # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t " michael@0: MAR_CHANNEL_ID=torbrowser-torproject-release michael@0: MOZ_PROFILE_MIGRATOR=1 michael@0: MOZ_EXTENSION_MANAGER=1 michael@0: MOZ_APP_STATIC_INI=1 michael@0: MOZ_WEBAPP_RUNTIME=1 michael@0: MOZ_MEDIA_NAVIGATOR=1 michael@0: if test "$OS_TARGET" = "WINNT" -o "$OS_TARGET" = "Darwin"; then michael@0: MOZ_FOLD_LIBS=1 michael@0: fi michael@0: MOZ_WEBGL_CONFORMANT=1 michael@0: # Enable navigator.mozPay michael@0: MOZ_PAY=1 michael@0: # Enable activities. These are used for FxOS developers currently. michael@0: MOZ_ACTIVITIES=1 michael@0: MOZ_JSDOWNLOADS=1 michael@0: MOZ_WEBM_ENCODER=1 michael@0: # Enable exact rooting on desktop. michael@0: export JSGC_USE_EXACT_ROOTING=1