Bug 1420100 - Add `memory` to the list of projects we run the configure lint on. r?build draft
authorMike Hommey <mh+mozilla@glandium.org>
Thu, 23 Nov 2017 17:13:53 +0900
changeset 702456 08f92d4323c43ef368875cd1ff304c5c22708812
parent 702247 960f50c2e0a991ab2ab313132e69fb2c96cb7866
child 741484 eac4549be7290882dd373ff7caec3385db72e372
push id90504
push userbmo:mh+mozilla@glandium.org
push dateThu, 23 Nov 2017 08:26:27 +0000
reviewersbuild
bugs1420100
milestone59.0a1
Bug 1420100 - Add `memory` to the list of projects we run the configure lint on. r?build
python/mozbuild/mozbuild/test/configure/lint.py
--- a/python/mozbuild/mozbuild/test/configure/lint.py
+++ b/python/mozbuild/mozbuild/test/configure/lint.py
@@ -26,16 +26,17 @@ class LintMeta(type):
                 return func(self, project)
             return test
 
         for project in (
             'browser',
             'embedding/ios',
             'extensions',
             'js',
+            'memory',
             'mobile/android',
         ):
             attrs['test_%s' % project.replace('/', '_')] = create_test(
                 project, attrs['lint'])
 
         return type.__new__(mcs, name, bases, attrs)