browser/confvars.sh

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

michael@0 1 #! /bin/sh
michael@0 2 # This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 # License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
michael@0 5
michael@0 6 MOZ_APP_BASENAME=Firefox
michael@0 7 MOZ_APP_VENDOR=Mozilla
michael@0 8 MOZ_UPDATER=1
michael@0 9 MOZ_PHOENIX=1
michael@0 10
michael@0 11 MOZ_CHROME_FILE_FORMAT=omni
michael@0 12 MOZ_DISABLE_EXPORT_JS=1
michael@0 13 MOZ_SAFE_BROWSING=1
michael@0 14 MOZ_SERVICES_COMMON=1
michael@0 15 MOZ_SERVICES_CRYPTO=1
michael@0 16 MOZ_SERVICES_FXACCOUNTS=1
michael@0 17 MOZ_SERVICES_HEALTHREPORT=1
michael@0 18 MOZ_SERVICES_METRICS=1
michael@0 19 MOZ_SERVICES_SYNC=1
michael@0 20 MOZ_APP_VERSION=$FIREFOX_VERSION
michael@0 21 MOZ_EXTENSIONS_DEFAULT=" gio"
michael@0 22 # MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
michael@0 23 # Changing MOZ_*BRANDING_DIRECTORY requires a clobber to ensure correct results,
michael@0 24 # because branding dependencies are broken.
michael@0 25 # MOZ_BRANDING_DIRECTORY is the default branding directory used when none is
michael@0 26 # specified. It should never point to the "official" branding directory.
michael@0 27 # For mozilla-beta, mozilla-release, or mozilla-central repositories, use
michael@0 28 # "nightly" branding (until bug 659568 is fixed).
michael@0 29 # For the mozilla-aurora repository, use "aurora".
michael@0 30 MOZ_BRANDING_DIRECTORY=browser/branding/nightly
michael@0 31 MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
michael@0 32 MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
michael@0 33 # This should usually be the same as the value MAR_CHANNEL_ID.
michael@0 34 # If more than one ID is needed, then you should use a comma separated list
michael@0 35 # of values.
michael@0 36 ACCEPTED_MAR_CHANNEL_IDS=torbrowser-torproject-release
michael@0 37 # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
michael@0 38 MAR_CHANNEL_ID=torbrowser-torproject-release
michael@0 39 MOZ_PROFILE_MIGRATOR=1
michael@0 40 MOZ_EXTENSION_MANAGER=1
michael@0 41 MOZ_APP_STATIC_INI=1
michael@0 42 MOZ_WEBAPP_RUNTIME=1
michael@0 43 MOZ_MEDIA_NAVIGATOR=1
michael@0 44 if test "$OS_TARGET" = "WINNT" -o "$OS_TARGET" = "Darwin"; then
michael@0 45 MOZ_FOLD_LIBS=1
michael@0 46 fi
michael@0 47 MOZ_WEBGL_CONFORMANT=1
michael@0 48 # Enable navigator.mozPay
michael@0 49 MOZ_PAY=1
michael@0 50 # Enable activities. These are used for FxOS developers currently.
michael@0 51 MOZ_ACTIVITIES=1
michael@0 52 MOZ_JSDOWNLOADS=1
michael@0 53 MOZ_WEBM_ENCODER=1
michael@0 54 # Enable exact rooting on desktop.
michael@0 55 export JSGC_USE_EXACT_ROOTING=1

mercurial