mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
64facf4193
'make check' is somewhat special in that we want to trigger testers before it finishes. Since moving sendchange into mach is difficult and 'make check' may be going away in the future anyway, just pull it out for now. Also remove the MOZ_AUTOMATION_*_SENDCHANGE flags since we aren't using them.
29 lines
837 B
Plaintext
29 lines
837 B
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-signmar
|
|
|
|
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
|
|
|
|
# Package js shell.
|
|
export MOZ_PACKAGE_JSSHELL=1
|
|
|
|
. $topsrcdir/build/win64/mozconfig.vs2013
|
|
|
|
. "$topsrcdir/build/mozconfig.common.override"
|