mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
35 lines
868 B
Plaintext
35 lines
868 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 -z "${_PYMAKE}"; then
|
|
mk_add_options MOZ_MAKE_FLAGS=-j1
|
|
fi
|
|
|
|
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
|
|
ENABLE_MARIONETTE=1
|
|
|
|
export CXXFLAGS=-DMOZ_ENABLE_JS_DUMP
|
|
|
|
GAIADIR=$topsrcdir/gaia
|
|
|
|
. "$topsrcdir/b2g/config/mozconfigs/common.override"
|