From 63538cf853e8defc1bb22c3bb621e0d470f5b63c Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Mon, 18 Nov 2019 08:46:53 +0000 Subject: [PATCH] Bug 1591538 - Don't include mozwebidlcodegen in SM tarball; r=sfink This was done in bug 956597 where including its files won over massaging the imports to not be reached from the tarball's build system. There are now only three references to mozwebidlcodegen in the tarball: * /python/mozbuild/mozbuild/frontend/data.py in which it is imported from a method on WebIDLCollection (there are no WebIDL collections in the tarball); * /python/mozbuild/mozbuild/frontend/emitter.py to emit WebIDL collections; * /python/mozbuild/mozbuild/backend/common.py in which it was made local to the single function using it in bug 1272976. I don't think it is necessary to include it anymore, but given it's only 56KB I'm not sure it matters either way. Differential Revision: https://phabricator.services.mozilla.com/D50738 --HG-- extra : moz-landing-system : lando --- js/src/make-source-package.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/src/make-source-package.sh b/js/src/make-source-package.sh index 3bfcdc01a071..c7dce47b4863 100755 --- a/js/src/make-source-package.sh +++ b/js/src/make-source-package.sh @@ -123,8 +123,6 @@ case $cmd in + /third_party/python/** + /third_party/rust/** -+ /dom/bindings/mozwebidlcodegen/** - + /layout/tools/reftest/reftest/** + /testing/mozbase/**