Bug 1009732 - Do only one Proguard pass when build is not MOZILLA_OFFICIAL. r=ckitching

DONTBUILD

This continues the convention that a developer build is when
MOZILLA_OFFICIAL is not defined.
This commit is contained in:
Nick Alexander 2014-05-13 22:20:36 -07:00
parent 9d4be81991
commit 843702eb2e

View File

@ -92,9 +92,13 @@ ifdef MOZ_DISABLE_PROGUARD
PROGUARD_PASSES=0
else
ifdef MOZ_DEBUG
PROGUARD_PASSES=1
PROGUARD_PASSES=1
else
PROGUARD_PASSES=6
ifndef MOZILLA_OFFICIAL
PROGUARD_PASSES=1
else
PROGUARD_PASSES=6
endif
endif
endif