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