Commit c8abdd68 authored by Mike Shal's avatar Mike Shal
Browse files

Bug 1616630 - Use py3_action for GENERATED_FILES that already support it;...

Bug 1616630 - Use py3_action for GENERATED_FILES that already support it; r=firefox-build-system-reviewers,kvark,rstewart

Differential Revision: https://phabricator.services.mozilla.com/D63438

--HG--
extra : moz-landing-system : lando
parent 6046e598
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -46,7 +46,6 @@ if CONFIG['COMPILE_ENVIRONMENT']:
        '%sntdll_freestanding.%s' % (CONFIG['LIB_PREFIX'],
                                     CONFIG['LIB_SUFFIX']),
        script='gen_ntdll_freestanding_lib.py',
        py2=True,
        inputs=['ntdll_freestanding.def'],
        flags=[CONFIG['LLVM_DLLTOOL']] + CONFIG['LLVM_DLLTOOL_FLAGS'])

+0 −1
Original line number Diff line number Diff line
@@ -20,7 +20,6 @@ if CONFIG['MOZ_UPDATER']:
        'en-US/updater/updater.ini',
        '../installer/windows/nsis/updater_append.ini',
    ]
    updater.py2 = True
    # Yes, this is weird, but what can you do? This file doesn't want to be in the DIST_SUBDIR,
    # but we can't really move it to a different directory until we change how locale repacks
    # work.
+0 −1
Original line number Diff line number Diff line
@@ -62,7 +62,6 @@ if CONFIG['ENABLE_MOZSEARCH_PLUGIN']:
    ]

GeneratedFile('ThirdPartyPaths.cpp', script="ThirdPartyPaths.py",
              py2=True,
              entry_point="generate", inputs=[
                  '/tools/rewriting/ThirdPartyPaths.txt',
                  '/tools/rewriting/Generated.txt',
+0 −2
Original line number Diff line number Diff line
@@ -87,7 +87,6 @@ if CONFIG['MOZ_APP_BASENAME']:
        script='../python/mozbuild/mozbuild/action/preprocessor.py',
        entry_point='generate',
        inputs=['application.ini.in'],
        py2=True,
        flags=['-D%s=%s' % (k, '1' if v is True else v)
               for k, v in appini_defines.iteritems()])
    
@@ -101,7 +100,6 @@ if CONFIG['MOZ_APP_BASENAME']:

if CONFIG['ENABLE_TESTS']:
    GeneratedFile('automation.py', script='gen_automation.py',
                  py2=True,
                  inputs=['automation.py.in'])

    TEST_HARNESS_FILES.reftest += [
+0 −1
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ def GeneratedTestKey(name):
    if not CONFIG['COMPILE_ENVIRONMENT']:
        return
    GeneratedFile(name, script='/security/manager/ssl/tests/unit/pykey.py',
                  py2=True,
                  inputs=['%s.keyspec' % name])
    # Turn RELATIVEDIR into list entry: like
    # 'security/manager/ssl/tests/unit/bad_certs' ->
Loading