Skip to content

Commit

Permalink
Bug 1656680 - Allow aboutGlean.ftl to be unreferenced r=Gijs
Browse files Browse the repository at this point in the history
But only on not-nightly or android builds.

Differential Revision: https://phabricator.services.mozilla.com/D85926
  • Loading branch information
chutten committed Aug 4, 2020
1 parent 7318dfb commit 5a005b7
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,15 @@ if (AppConstants.NIGHTLY_BUILD && AppConstants.platform != "win") {
whitelist.push({ file: "chrome://fxr/content/fxrui.html" });
}

if (!AppConstants.NIGHTLY_BUILD || AppConstants.platform == "android") {
// Bug 1656680, should be removed after Bug 1651111 lands.
// The l10n build system can't package string files only for some platforms.
// Referenced by aboutGlean.html
whitelist.push({
file: "resource://gre/localization/en-US/toolkit/about/aboutGlean.ftl",
});
}

whitelist = new Set(
whitelist
.filter(
Expand Down

0 comments on commit 5a005b7

Please sign in to comment.