summaryrefslogtreecommitdiffstats
path: root/toolkit/modules
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-03 08:22:52 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-03 08:22:52 -0500
commit7239cc8c7e9c140be6858c659d942f6d71283531 (patch)
treea253fdf254e4c0cb87c0fcf69c8b3b5761f31530 /toolkit/modules
parent6ff7b85d14eeb64216e7cba5d76beeb2c485045e (diff)
downloadUXP-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/modules')
-rw-r--r--toolkit/modules/AppConstants.jsm9
1 files changed, 8 insertions, 1 deletions
diff --git a/toolkit/modules/AppConstants.jsm b/toolkit/modules/AppConstants.jsm
index 7ce8e1f09..8d9fa103c 100644
--- a/toolkit/modules/AppConstants.jsm
+++ b/toolkit/modules/AppConstants.jsm
@@ -308,7 +308,14 @@ this.AppConstants = Object.freeze({
MOZ_APP_NAME: "@MOZ_APP_NAME@",
MOZ_APP_VERSION: "@MOZ_APP_VERSION@",
MOZ_APP_VERSION_DISPLAY: "@MOZ_APP_VERSION_DISPLAY@",
- MOZ_BUILD_APP: "@MOZ_BUILD_APP@",
+
+ MOZ_BUILD_APP:
+#ifdef MOZ_PHOENIX
+ "browser",
+#else
+ "@MOZ_BUILD_APP@",
+#endif
+
MOZ_MACBUNDLE_NAME: "@MOZ_MACBUNDLE_NAME@",
MOZ_UPDATE_CHANNEL: "@MOZ_UPDATE_CHANNEL@",
INSTALL_LOCALE: "@AB_CD@",