Use MOZ_PHOENIX instead of checking for 'browser' in MOZ_BUILD_APP

This commit is contained in:
NTD 2018-02-03 08:22:52 -05:00 committed by Roy Tam
commit 28bbfef589
21 changed files with 35 additions and 24 deletions

View file

@ -17,7 +17,11 @@
# mobile native UIs that do not use XUL for UI
toolkit = CONFIG['MOZ_WIDGET_TOOLKIT']
app = CONFIG['MOZ_BUILD_APP']
if CONFIG['MOZ_PHOENIX']:
DEFINES['MOZ_PHOENIX'] = 1
app = 'browser'
else:
app = CONFIG['MOZ_BUILD_APP']
if toolkit == 'cocoa':
DIRS += ['osx']