From 7be929904e1d76fe9bc6256cbcad9d6f4045ac4f Mon Sep 17 00:00:00 2001 From: Nicholas Rishel Date: Wed, 20 Sep 2023 21:43:33 +0000 Subject: [PATCH] Bug 1851714 - Don't exclude Default Agent directory from artifact builds. r=glandium This is necessary to bundle non-compiled files from the Default Agent, essentially `.sys.mjs` and `.ini` files. Differential Revision: https://phabricator.services.mozilla.com/D188769 --- toolkit/moz.build | 1 + 1 file changed, 1 insertion(+) diff --git a/toolkit/moz.build b/toolkit/moz.build index 1a2b1f97ea7e..30ec614ef196 100644 --- a/toolkit/moz.build +++ b/toolkit/moz.build @@ -30,6 +30,7 @@ if CONFIG["OS_ARCH"] == "WINNT": if CONFIG["MOZ_NOTIFICATION_SERVER"]: DIRS += ["mozapps/notificationserver"] + if CONFIG["CC_TYPE"] == "clang-cl" or CONFIG["MOZ_ARTIFACT_BUILDS"]: # Default Browser Agent relies on Windows toast notifications, so should # also not be built with mingw. if CONFIG["MOZ_DEFAULT_BROWSER_AGENT"]: