diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 08:22:52 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-02-03 08:22:52 -0500 |
commit | 7239cc8c7e9c140be6858c659d942f6d71283531 (patch) | |
tree | a253fdf254e4c0cb87c0fcf69c8b3b5761f31530 /toolkit/themes/moz.build | |
parent | 6ff7b85d14eeb64216e7cba5d76beeb2c485045e (diff) | |
download | UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.gz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.lz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.tar.xz UXP-7239cc8c7e9c140be6858c659d942f6d71283531.zip |
Use MOZ_PHOENIX instead of checking for 'browser' in MOZ_BUILD_APP
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 3d435ba71..4031f36b8 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'] |