Bug 1267007 - fix profiler and search conditional Services.jsm declarations, r?billm draft
authorGijs Kruitbosch <gijskruitbosch@gmail.com>
Mon, 25 Apr 2016 16:32:11 +0100
changeset 356055 e51a61d76590ef870ab625655a8a0e424d0aae86
parent 355956 1c6385ae1fe7e37d8f23f958ce14582f07af729e
child 519321 bb96d301877ad764fa0e324b0a9accd414583822
push id16426
push usergijskruitbosch@gmail.com
push dateMon, 25 Apr 2016 15:32:26 +0000
reviewersbillm
bugs1267007
milestone48.0a1
Bug 1267007 - fix profiler and search conditional Services.jsm declarations, r?billm MozReview-Commit-ID: 6IgEPTkdLMA
toolkit/modules/AppConstants.jsm
--- a/toolkit/modules/AppConstants.jsm
+++ b/toolkit/modules/AppConstants.jsm
@@ -264,16 +264,30 @@ this.AppConstants = Object.freeze({
 
   MOZ_ANDROID_HISTORY:
 #ifdef MOZ_ANDROID_HISTORY
   true,
 #else
   false,
 #endif
 
+  MOZ_TOOLKIT_SEARCH:
+#ifdef MOZ_TOOLKIT_SEARCH
+  true,
+#else
+  false,
+#endif
+
+  MOZ_ENABLE_PROFILER_SPS:
+#ifdef MOZ_ENABLE_PROFILER_SPS
+  true,
+#else
+  false,
+#endif
+
   DLL_PREFIX: "@DLL_PREFIX@",
   DLL_SUFFIX: "@DLL_SUFFIX@",
 
   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_MACBUNDLE_NAME: "@MOZ_MACBUNDLE_NAME@",