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/.
6 MOZ_APP_BASENAME
=Firefox
11 if test "$OS_ARCH" = "WINNT"; then
12 if ! test "$HAVE_64BIT_BUILD"; then
13 if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
14 "$MOZ_UPDATE_CHANNEL" = "nightly-try" -o \
15 "$MOZ_UPDATE_CHANNEL" = "aurora" -o \
16 "$MOZ_UPDATE_CHANNEL" = "beta" -o \
17 "$MOZ_UPDATE_CHANNEL" = "release"; then
18 if ! test "$MOZ_DEBUG"; then
19 if ! test "$USE_STUB_INSTALLER"; then
20 # Expect USE_STUB_INSTALLER from taskcluster for downstream task consistency
21 echo "ERROR: STUB installer expected to be enabled but"
22 echo "ERROR: USE_STUB_INSTALLER is not specified in the environment"
31 # Enable building ./signmar and running libmar signature tests
34 BROWSER_CHROME_URL
=chrome
://browser
/content
/browser.xhtml
36 # MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
37 # MOZ_BRANDING_DIRECTORY is the default branding directory used when none is
38 # specified. It should never point to the "official" branding directory.
39 # For mozilla-beta, mozilla-release, or mozilla-central repositories, use
40 # "unofficial" branding.
41 # For the mozilla-aurora repository, use "aurora".
42 MOZ_BRANDING_DIRECTORY
=browser
/branding
/unofficial
43 MOZ_OFFICIAL_BRANDING_DIRECTORY
=browser
/branding
/official
44 MOZ_APP_ID
={ec8030f7-c20a-464f-9b0e-13a3a9e97384
}
45 # ACCEPTED_MAR_CHANNEL_IDS should usually be the same as the value MAR_CHANNEL_ID.
46 # If more than one ID is needed, then you should use a comma separated list
48 # The MAR_CHANNEL_ID must not contain the following 3 characters: ",\t "
49 if test "$MOZ_UPDATE_CHANNEL" = "aurora"; then
50 ACCEPTED_MAR_CHANNEL_IDS
=firefox-mozilla-aurora
51 MAR_CHANNEL_ID
=firefox-mozilla-aurora
53 ACCEPTED_MAR_CHANNEL_IDS
=firefox-mozilla-central
54 MAR_CHANNEL_ID
=firefox-mozilla-central
56 # ASan reporter builds should have different channel ids
57 if [ "${MOZ_ASAN_REPORTER}" = "1" ]; then
58 ACCEPTED_MAR_CHANNEL_IDS
="${ACCEPTED_MAR_CHANNEL_IDS}-asan"
59 MAR_CHANNEL_ID
="${MAR_CHANNEL_ID}-asan"
62 MOZ_PROFILE_MIGRATOR
=1
64 # Include the DevTools client, not just the server (which is the default)