2b3415dfd8
* chore: remove duplicate and un-needed files from dist zips * Strip chromedriver binaries Also, fix path for files to skip * Don't strip mksnapshot for now Mksnapshot needs special handling for arm/arm64 because there is both an x86 and arm/arm64 binary in those cases.
82 lines
2.2 KiB
Python
82 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
import zipfile
|
|
|
|
LINUX_BINARIES_TO_STRIP = [
|
|
'chromedriver',
|
|
'electron',
|
|
'libffmpeg.so',
|
|
'libnode.so'
|
|
]
|
|
|
|
EXTENSIONS_TO_SKIP = [
|
|
'.pdb'
|
|
]
|
|
|
|
PATHS_TO_SKIP = [
|
|
'angledata', #Skipping because it is an output of //ui/gl that we don't need
|
|
'swiftshader', #Skipping because it is an output of //ui/gl that we don't need
|
|
'./libVkLayer_', #Skipping because these are outputs that we don't need
|
|
'./VkLayerLayer_', #Skipping because these are outputs that we don't need
|
|
]
|
|
|
|
def skip_path(dep):
|
|
should_skip = (
|
|
any(dep.startswith(path) for path in PATHS_TO_SKIP) or
|
|
any(dep.endswith(ext) for ext in EXTENSIONS_TO_SKIP))
|
|
if should_skip:
|
|
print("Skipping {}".format(dep))
|
|
return should_skip
|
|
|
|
def strip_binaries(target_cpu, dep):
|
|
for binary in LINUX_BINARIES_TO_STRIP:
|
|
if dep.endswith(binary):
|
|
strip_binary(dep, target_cpu)
|
|
|
|
def strip_binary(binary_path, target_cpu):
|
|
if target_cpu == 'arm':
|
|
strip = 'arm-linux-gnueabihf-strip'
|
|
elif target_cpu == 'arm64':
|
|
strip = 'aarch64-linux-gnu-strip'
|
|
elif target_cpu == 'mips64el':
|
|
strip = 'mips64el-redhat-linux-strip'
|
|
else:
|
|
strip = 'strip'
|
|
execute([strip, binary_path])
|
|
|
|
def execute(argv):
|
|
try:
|
|
output = subprocess.check_output(argv, stderr=subprocess.STDOUT)
|
|
return output
|
|
except subprocess.CalledProcessError as e:
|
|
print e.output
|
|
raise e
|
|
|
|
def main(argv):
|
|
dist_zip, runtime_deps, target_cpu, target_os = argv
|
|
dist_files = []
|
|
with open(runtime_deps) as f:
|
|
for dep in f.readlines():
|
|
dep = dep.strip()
|
|
if dep not in dist_files:
|
|
dist_files += [dep]
|
|
if sys.platform == 'darwin':
|
|
mac_zip_results = execute(['zip', '-r', '-y', dist_zip] + dist_files)
|
|
else:
|
|
with zipfile.ZipFile(dist_zip, 'w', zipfile.ZIP_DEFLATED) as z:
|
|
for dep in dist_files:
|
|
if target_os == 'linux':
|
|
strip_binaries(target_cpu, dep)
|
|
if skip_path(dep):
|
|
continue
|
|
if os.path.isdir(dep):
|
|
for root, dirs, files in os.walk(dep):
|
|
for file in files:
|
|
z.write(os.path.join(root, file))
|
|
else:
|
|
z.write(dep)
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|