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
6MOZ_APP_VENDOR=Mozilla
7MOZ_UPDATER=1
8
9if test "$OS_ARCH" = "WINNT"; then
10  if ! test "$HAVE_64BIT_BUILD"; then
11    if test "$MOZ_UPDATE_CHANNEL" = "nightly" -o \
12            "$MOZ_UPDATE_CHANNEL" = "nightly-try" -o \
13            "$MOZ_UPDATE_CHANNEL" = "aurora" -o \
14            "$MOZ_UPDATE_CHANNEL" = "beta" -o \
15            "$MOZ_UPDATE_CHANNEL" = "release"; then
16      if ! test "$MOZ_DEBUG"; then
17        if ! test "$USE_STUB_INSTALLER"; then
18          # Expect USE_STUB_INSTALLER from taskcluster for downstream task consistency
19          echo "ERROR: STUB installer expected to be enabled but"
20          echo "ERROR: USE_STUB_INSTALLER is not specified in the environment"
21          exit 1
22        fi
23        MOZ_STUB_INSTALLER=1
24      fi
25    fi
26  fi
27fi
28
29BROWSER_CHROME_URL=chrome://browser/content/browser.xhtml
30
31# MOZ_APP_DISPLAYNAME will be set by branding/configure.sh
32# MOZ_BRANDING_DIRECTORY is the default branding directory used when none is
33# specified. It should never point to the "official" branding directory.
34# For mozilla-beta, mozilla-release, or mozilla-central repositories, use
35# "unofficial" branding.
36# For the mozilla-aurora repository, use "aurora".
37MOZ_BRANDING_DIRECTORY=browser/branding/unofficial
38MOZ_OFFICIAL_BRANDING_DIRECTORY=browser/branding/official
39MOZ_APP_ID={ec8030f7-c20a-464f-9b0e-13a3a9e97384}
40
41MOZ_PROFILE_MIGRATOR=1
42
43# Include the DevTools client, not just the server (which is the default)
44MOZ_DEVTOOLS=all
45