Skip to content
Snippets Groups Projects
Commit 73859802 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 679ff7cf
Branches
Tags
1 merge request!1462BB/TB 43584: Rebased stable again onto 128.9.0esr build2
......@@ -2173,7 +2173,11 @@ BrowserGlue.prototype = {
() => lazy.PageDataService.uninit(),
() => lazy.PageThumbs.uninit(),
() => lazy.NewTabUtils.uninit(),
() => lazy.Normandy.uninit(),
() => {
if (AppConstants.MOZ_NORMANDY) {
lazy.Normandy.uninit();
}
},
() => lazy.RFPHelper.uninit(),
() => lazy.ASRouterNewTabHook.destroy(),
() => {
......
......
......@@ -130,7 +130,9 @@ if CONFIG["MOZ_WIDGET_TOOLKIT"] not in ("android", "windows"):
DIRS += ["aboutwebauthn"]
if CONFIG["MOZ_BUILD_APP"] == "browser":
DIRS += ["featuregates", "messaging-system", "normandy"]
if CONFIG["MOZ_NORMANDY"]:
DIRS += ["normandy"]
DIRS += ["featuregates", "messaging-system"]
DIRS += ["nimbus"]
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment