mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43d54ab19e
CLOSED TREE Backed out changeset f26c050a39a1 (bug 1235345) Backed out changeset c7689b72d3fa (bug 1234526) Backed out changeset 3124025d1147 (bug 1234526) Backed out changeset 096d46bdaf86 (bug 1234526) Backed out changeset 96e0326e7985 (bug 1234522) Backed out changeset c3b6bf176f86 (bug 1234522) Backed out changeset 3e7dc6d87325 (bug 1234522) Backed out changeset f6447d37d113 (bug 1237700)
72 lines
2.3 KiB
Bash
Executable File
72 lines
2.3 KiB
Bash
Executable File
#! /bin/sh
|
|
# 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/.
|
|
|
|
MOZ_APP_BASENAME=Firefox
|
|
MOZ_APP_VENDOR=Mozilla
|
|
MOZ_UPDATER=1
|
|
MOZ_PHOENIX=1
|
|
|
|
if test "$OS_ARCH" = "WINNT"; then
|
|
MOZ_MAINTENANCE_SERVICE=1
|
|
if ! test "$HAVE_64BIT_BUILD"; then
|
|
if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "aurora" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "beta" -o \
|
|
"$MOZ_UPDATE_CHANNEL" = "release"; then
|
|
if ! test "$MOZ_DEBUG"; then
|
|
MOZ_STUB_INSTALLER=1
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# Enable building ./signmar and running libmar signature tests
|
|
MOZ_ENABLE_SIGNMAR=1
|
|
|
|
MOZ_CHROME_FILE_FORMAT=omni
|
|
MOZ_DISABLE_EXPORT_JS=1
|
|
MOZ_SAFE_BROWSING=1
|
|
MOZ_SERVICES_COMMON=1
|
|
MOZ_SERVICES_CRYPTO=1
|
|
MOZ_SERVICES_HEALTHREPORT=1
|
|
MOZ_SERVICES_SYNC=1
|
|
MOZ_SERVICES_CLOUDSYNC=1
|
|
MOZ_APP_VERSION=$FIREFOX_VERSION
|
|
MOZ_APP_VERSION_DISPLAY=$FIREFOX_VERSION_DISPLAY
|
|
MOZ_EXTENSIONS_DEFAULT=" gio"
|
|
# 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
|
|
# "unofficial" branding.
|
|
# For the mozilla-aurora repository, use "aurora".
|
|
MOZ_BRANDING_DIRECTORY=browser/branding/unofficial
|
|
MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
|
|
MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
|
|
# 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
|
|
MOZ_PROFILE_MIGRATOR=1
|
|
MOZ_APP_STATIC_INI=1
|
|
MOZ_WEBAPP_RUNTIME=1
|
|
MOZ_MEDIA_NAVIGATOR=1
|
|
MOZ_WEBGL_CONFORMANT=1
|
|
# Enable navigator.mozPay
|
|
MOZ_PAY=1
|
|
# Enable activities. These are used for FxOS developers currently.
|
|
MOZ_ACTIVITIES=1
|
|
MOZ_JSDOWNLOADS=1
|
|
MOZ_WEBM_ENCODER=1
|
|
MOZ_RUST_MP4PARSE=1
|
|
|
|
# Enable checking that add-ons are signed by the trusted root
|
|
MOZ_ADDON_SIGNING=1
|
|
|
|
# Include the DevTools client, not just the server (which is the default)
|
|
MOZ_DEVTOOLS=all
|