mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 17:37:30 +09:00
Use MOZ_PHOENIX instead of checking for 'browser' in MOZ_BUILD_APP
This commit is contained in:
parent
09f68c6444
commit
28bbfef589
21 changed files with 35 additions and 24 deletions
|
|
@ -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']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue