mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-09 13:30:34 +00:00
35 lines
1.0 KiB
Plaintext
35 lines
1.0 KiB
Plaintext
. "$topsrcdir/build/mozconfig.win-common"
|
|
MOZ_AUTOMATION_L10N_CHECK=0
|
|
. "$topsrcdir/browser/config/mozconfigs/common"
|
|
|
|
ac_add_options --target=x86_64-pc-mingw32
|
|
ac_add_options --host=x86_64-pc-mingw32
|
|
|
|
ac_add_options --enable-debug
|
|
ac_add_options --enable-dmd
|
|
ac_add_options --enable-profiling # needed for --enable-dmd to work on Windows
|
|
ac_add_options --enable-verify-mar
|
|
|
|
if [ -f /c/builds/google-oauth-api.key ]; then
|
|
_google_oauth_api_keyfile=/c/builds/google-oauth-api.key
|
|
else
|
|
_google_oauth_api_keyfile=/e/builds/google-oauth-api.key
|
|
fi
|
|
ac_add_options --with-google-oauth-api-keyfile=${_google_oauth_api_keyfile}
|
|
|
|
# Needed to enable breakpad in application.ini
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
# Treat warnings as errors (modulo ALLOW_COMPILER_WARNINGS).
|
|
ac_add_options --enable-warnings-as-errors
|
|
|
|
# Package js shell.
|
|
export MOZ_PACKAGE_JSSHELL=1
|
|
|
|
ac_add_options --with-branding=browser/branding/nightly
|
|
|
|
. $topsrcdir/build/win64/mozconfig.vs2013
|
|
|
|
. "$topsrcdir/build/mozconfig.common.override"
|
|
. "$topsrcdir/build/mozconfig.cache"
|