2012-09-05 23:09:50 +04:00
|
|
|
. "$topsrcdir/b2g/config/mozconfigs/common"
|
|
|
|
|
2012-06-04 21:36:07 +04:00
|
|
|
# for pgo
|
|
|
|
mk_add_options PROFILE_GEN_SCRIPT='$(PYTHON) $(MOZ_OBJDIR)/_profile/pgo/profileserver.py'
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-11-28 02:01:24 +04:00
|
|
|
if test -z "${_PYMAKE}"; then
|
|
|
|
mk_add_options MOZ_MAKE_FLAGS=-j1
|
|
|
|
fi
|
2012-06-04 21:36:07 +04:00
|
|
|
|
|
|
|
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
|
2012-08-23 03:26:32 +04:00
|
|
|
ENABLE_MARIONETTE=1
|
2012-06-04 21:36:07 +04:00
|
|
|
|
|
|
|
export CXXFLAGS=-DMOZ_ENABLE_JS_DUMP
|
2012-09-05 23:10:21 +04:00
|
|
|
|
2012-10-05 22:19:16 +04:00
|
|
|
GAIADIR=$topsrcdir/gaia
|
|
|
|
|
2012-09-05 23:10:21 +04:00
|
|
|
. "$topsrcdir/b2g/config/mozconfigs/common.override"
|