Bug 1267935 - Remove NIGHTLY_BUILD condition from mobile theme. r?margaret draft
authorRay Lin <ralin@mozilla.com>
Tue, 10 May 2016 22:50:01 +0800
changeset 365328 587fb3939d7925ea316acb777dccafa298245c9f
parent 365273 1579b9e2e50f3a27ad02d58cc9170c91e0973fec
child 520528 acdeeda8de12275786e86b4a0a2745e881c2ce63
push id17712
push userbmo:ralin@mozilla.com
push dateTue, 10 May 2016 14:50:32 +0000
reviewersmargaret
bugs1267935
milestone49.0a1
Bug 1267935 - Remove NIGHTLY_BUILD condition from mobile theme. r?margaret MozReview-Commit-ID: 6aEjc6meEtK
toolkit/themes/moz.build
--- a/toolkit/themes/moz.build
+++ b/toolkit/themes/moz.build
@@ -18,17 +18,17 @@
 
 toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
 app = CONFIG['MOZ_BUILD_APP']
 
 if toolkit == 'cocoa':
     DIRS += ['osx']
 elif toolkit in ('gtk2', 'gtk3', 'qt'):
     DIRS += ['linux']
-elif app == 'mobile/android' and CONFIG['NIGHTLY_BUILD']:
+elif app == 'mobile/android':
     DIRS += ['mobile']
 else:
     DIRS += ['windows']
 
     if CONFIG['MOZ_THEME_FASTSTRIPE']:
         DIRS += ['faststripe/global']
 
 with Files('**'):