Bug 1626163 - Add rust-generated C/C++ files to generated-files. r=dmajor

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2020-03-31 21:08:37 +00:00
Родитель 606a2df712
Коммит 65f99a7349
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -48,15 +48,16 @@ def get_generated_sources():
finder = FileFinder(mozpath.join(buildconfig.topobjdir, base))
for p, f in finder.find('**/*.h'):
yield mozpath.join(base, p), f
# Next, return any Rust source files that were generated into the Rust
# Next, return any source files that were generated into the Rust
# object directory.
rust_build_kind = 'debug' if buildconfig.substs.get('MOZ_DEBUG_RUST') else 'release'
base = mozpath.join(buildconfig.substs['RUST_TARGET'],
rust_build_kind,
'build')
finder = FileFinder(mozpath.join(buildconfig.topobjdir, base))
for p, f in finder.find('**/*.rs'):
yield mozpath.join(base, p), f
for p, f in finder:
if p.endswith(('.rs', '.c', '.h', '.cc', '.cpp')):
yield mozpath.join(base, p), f
def get_s3_region_and_bucket():