mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 14:33:11 +01:00
7811d2de69
Restructure the zlib.gyp file based on the upstream gn file, breaking out the files with optimizations that need additional compiler flags. Use a copy of the GN-scraper.py script to reduce the amount of hand editing when the zlib dependency is updated. PR-URL: https://github.com/nodejs/node/pull/45589 Fixes: https://github.com/nodejs/node/issues/32856 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
29 lines
885 B
Python
29 lines
885 B
Python
# Copyright (c) 2019 Refael Ackeramnn<refack@gmail.com>. All rights reserved.
|
|
# Use of this source code is governed by an MIT-style license.
|
|
import re
|
|
import os
|
|
import sys
|
|
|
|
PLAIN_SOURCE_RE = re.compile('\s*"([^/$].+)"\s*')
|
|
def DoMain(args):
|
|
gn_filename, pattern = args
|
|
src_root = os.path.dirname(gn_filename)
|
|
with open(gn_filename, 'rb') as gn_file:
|
|
gn_content = gn_file.read().decode('utf-8')
|
|
|
|
scraper_re = re.compile(pattern + r'\[([^\]]+)', re.DOTALL)
|
|
matches = scraper_re.search(gn_content)
|
|
match = matches.group(1)
|
|
files = []
|
|
for l in match.splitlines():
|
|
m2 = PLAIN_SOURCE_RE.match(l)
|
|
if not m2:
|
|
continue
|
|
files.append(m2.group(1))
|
|
# always use `/` since GYP will process paths further downstream
|
|
rel_files = ['"%s/%s"' % (src_root, f) for f in files]
|
|
return ' '.join(rel_files)
|
|
|
|
if __name__ == '__main__':
|
|
print(DoMain(sys.argv[1:]))
|