From 2c2741fcd438595b464edf05753a9eec5c88ad3b Mon Sep 17 00:00:00 2001 From: Nick Alexander Date: Tue, 13 May 2014 22:20:36 -0700 Subject: [PATCH] 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. --- mobile/android/base/Makefile.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/mobile/android/base/Makefile.in b/mobile/android/base/Makefile.in index 31bcac18b622..2ca1e2a331c6 100644 --- a/mobile/android/base/Makefile.in +++ b/mobile/android/base/Makefile.in @@ -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