Skip to content
Snippets Groups Projects
Commit d814648c authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame :jack_o_lantern: Committed by Richard Pospesel
Browse files

Bug 41635: Disable the Normandy component

Do not include Normandy at all whenever MOZ_NORMANDY is False.
parent 85b5aa49
Branches
Tags
1 merge request!553Bug 41635: Disable the Normandy component
......@@ -2011,7 +2011,13 @@ BrowserGlue.prototype = {
() => PageDataService.uninit(),
() => PageThumbs.uninit(),
() => NewTabUtils.uninit(),
() => Normandy.uninit(),
() => {
if (AppConstants.MOZ_NORMANDY) {
Normandy.uninit();
}
},
() => RFPHelper.uninit(),
() => UpdateListener.reset(),
() => OnionAliasStore.uninit(),
......
......
......@@ -124,7 +124,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