Bug 1085513 part3: Remove unused mozconfig files r=lightsofapollo,garndt.

Since we now use the gecko tree mozconfigs for building, the docker
mozconfigs are no longer necessary.
This commit is contained in:
Wander Lairson Costa 2014-11-26 10:11:30 -08:00
parent ad16105896
commit 286af35041
4 changed files with 1 additions and 58 deletions

View File

@ -4,7 +4,6 @@ MAINTAINER Jonas Finnemann Jensen <jopsen@gmail.com>
ENV PATH $PATH:/home/worker/bin/
# Add utilities and configuration
ADD mozconfigs/ /home/worker/mozconfigs/
RUN mkdir -p /home/worker/bin
ADD build.sh /home/worker/bin/build.sh
ADD build-b2g-desktop.sh /home/worker/bin/build-b2g-desktop.sh

View File

@ -1 +1 @@
0.0.12
0.0.13

View File

@ -1,48 +0,0 @@
. "$topsrcdir/b2g/config/mozconfigs/common"
ac_add_options --enable-stdcxx-compat
ac_add_options --enable-update-channel=${MOZ_UPDATE_CHANNEL}
ac_add_options --enable-update-packaging
ac_add_options --enable-signmar
ac_add_options --enable-debug
# Nightlies only since this has a cost in performance
#ac_add_options --enable-js-diagnostics
# This will overwrite the default of stripping everything and keep the symbol table.
# This is useful for profiling and debugging and only increases the package size
# by 2 MBs.
STRIP_FLAGS="--strip-debug"
# Needed to enable breakpad in application.ini
export MOZILLA_OFFICIAL=1
export MOZ_TELEMETRY_REPORTING=1
# Treat warnings as errors in directories with FAIL_ON_WARNINGS.
# DISABLED WHILE NOT ON TRY ac_add_options --enable-warnings-as-errors
# Use ccache
#. "$topsrcdir/build/mozconfig.cache"
#B2G options
ac_add_options --enable-application=b2g
ENABLE_MARIONETTE=1
ac_add_options --disable-elf-hack
export CXXFLAGS=-DMOZ_ENABLE_JS_DUMP
GAIADIR=/home/worker/gaia/source
. "$topsrcdir/b2g/config/mozconfigs/common.override"
mk_add_options MOZ_OBJDIR=/home/worker/object-folder/
# Enable parallel compiling
CONCURRENCY=$(( `grep processor /proc/cpuinfo | wc -l` + 2 ))
mk_add_options MOZ_MAKE_FLAGS="-j$CONCURRENCY"
# Not sure about this one...
ac_add_options --disable-libjpeg-turbo
# This option is required if you want to be able to run Gaia's tests
ac_add_options --enable-tests

View File

@ -1,8 +0,0 @@
ac_add_options --enable-application=browser
ac_add_options --enable-optimize
mk_add_options MOZ_OBJDIR=/home/worker/object-folder/
# Enable parallel compiling
CONCURRENCY=$(( `grep processor /proc/cpuinfo | wc -l` + 2 ))
mk_add_options MOZ_MAKE_FLAGS="-j$CONCURRENCY"