diff options
Diffstat (limited to 'toolkit/themes/moz.build')
-rw-r--r-- | toolkit/themes/moz.build | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/toolkit/themes/moz.build b/toolkit/themes/moz.build index 3d435ba71e..4031f36b8f 100644 --- a/toolkit/themes/moz.build +++ b/toolkit/themes/moz.build @@ -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'] |