mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
32 lines
850 B
Plaintext
32 lines
850 B
Plaintext
. "$topsrcdir/b2g/config/mozconfigs/common"
|
|
|
|
ac_add_options --enable-update-channel=${MOZ_UPDATE_CHANNEL}
|
|
ac_add_options --enable-update-packaging
|
|
ac_add_options --enable-jemalloc
|
|
ac_add_options --enable-signmar
|
|
|
|
# Nightlies only since this has a cost in performance
|
|
ac_add_options --enable-js-diagnostics
|
|
|
|
# Needed to enable breakpad in application.ini
|
|
export MOZILLA_OFFICIAL=1
|
|
|
|
export MOZ_TELEMETRY_REPORTING=1
|
|
|
|
if test "$PROCESSOR_ARCHITECTURE" = "AMD64" -o "$PROCESSOR_ARCHITEW6432" = "AMD64"; then
|
|
. $topsrcdir/build/win32/mozconfig.vs2010-win64
|
|
else
|
|
. $topsrcdir/build/win32/mozconfig.vs2010
|
|
fi
|
|
|
|
# B2G Options
|
|
ac_add_options --enable-application=b2g
|
|
export CXXFLAGS=-DMOZ_ENABLE_JS_DUMP
|
|
|
|
GAIADIR=$topsrcdir/gaia
|
|
|
|
# Build simulator xpi and phone tweaks for b2g-desktop
|
|
FXOS_SIMULATOR=1
|
|
|
|
. "$topsrcdir/b2g/config/mozconfigs/common.override"
|