Skip to content
Snippets Groups Projects
Verified Commit 53f49764 authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern:
Browse files

Bug 41635: Disable the Normandy component

Do not include Normandy at all whenever MOZ_NORMANDY is False.
parent d49eb63f
No related branches found
No related tags found
1 merge request!768Bug 42090: Rebase release release onto 102.15.1esr
......@@ -2004,7 +2004,13 @@ BrowserGlue.prototype = {
() => PageDataService.uninit(),
() => PageThumbs.uninit(),
() => NewTabUtils.uninit(),
() => Normandy.uninit(),
() => {
if (AppConstants.MOZ_NORMANDY) {
Normandy.uninit();
}
},
() => RFPHelper.uninit(),
() => ASRouterNewTabHook.destroy(),
() => UpdateListener.reset(),
......
......@@ -122,7 +122,9 @@ if CONFIG["MOZ_WIDGET_TOOLKIT"] != "android":
]
if CONFIG["MOZ_BUILD_APP"] == "browser":
DIRS += ["normandy", "messaging-system"]
if CONFIG["MOZ_NORMANDY"]:
DIRS += ["normandy"]
DIRS += ["messaging-system"]
DIRS += ["nimbus"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment