2013-06-24 09:51:48 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
import argparse
|
2013-06-24 09:51:48 +00:00
|
|
|
import os
|
2014-05-09 11:29:18 +00:00
|
|
|
import re
|
2013-06-24 09:51:48 +00:00
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
2013-08-21 04:09:26 +00:00
|
|
|
import tarfile
|
2013-06-24 09:51:48 +00:00
|
|
|
|
2014-09-01 14:54:20 +00:00
|
|
|
from lib.config import LIBCHROMIUMCONTENT_COMMIT, BASE_URL, TARGET_PLATFORM, \
|
|
|
|
DIST_ARCH
|
2013-09-27 02:21:27 +00:00
|
|
|
from lib.util import scoped_cwd, rm_rf, get_atom_shell_version, make_zip, \
|
2014-09-20 15:09:49 +00:00
|
|
|
safe_mkdir, execute, get_chromedriver_version
|
2013-06-24 09:51:48 +00:00
|
|
|
|
|
|
|
|
2014-05-07 06:34:53 +00:00
|
|
|
ATOM_SHELL_VERSION = get_atom_shell_version()
|
2013-08-31 02:35:01 +00:00
|
|
|
|
2013-06-24 09:51:48 +00:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
DIST_DIR = os.path.join(SOURCE_ROOT, 'dist')
|
2013-11-25 08:02:35 +00:00
|
|
|
OUT_DIR = os.path.join(SOURCE_ROOT, 'out', 'Release')
|
2013-08-12 07:00:50 +00:00
|
|
|
NODE_DIR = os.path.join(SOURCE_ROOT, 'vendor', 'node')
|
2014-09-01 14:54:20 +00:00
|
|
|
DIST_HEADERS_NAME = 'node-{0}'.format(ATOM_SHELL_VERSION)
|
2013-08-21 04:09:26 +00:00
|
|
|
DIST_HEADERS_DIR = os.path.join(DIST_DIR, DIST_HEADERS_NAME)
|
2013-08-12 07:00:50 +00:00
|
|
|
|
2014-03-11 09:04:41 +00:00
|
|
|
SYMBOL_NAME = {
|
|
|
|
'darwin': 'libchromiumcontent.dylib.dSYM',
|
|
|
|
'linux': 'libchromiumcontent.so.dbg',
|
|
|
|
'win32': 'chromiumcontent.dll.pdb',
|
|
|
|
}[TARGET_PLATFORM]
|
|
|
|
|
2013-08-31 01:06:27 +00:00
|
|
|
TARGET_BINARIES = {
|
|
|
|
'darwin': [
|
|
|
|
],
|
|
|
|
'win32': [
|
|
|
|
'atom.exe',
|
|
|
|
'chromiumcontent.dll',
|
|
|
|
'content_shell.pak',
|
2014-12-12 03:45:28 +00:00
|
|
|
'd3dcompiler_46.dll',
|
2013-08-31 03:13:11 +00:00
|
|
|
'ffmpegsumo.dll',
|
2014-07-18 00:42:39 +00:00
|
|
|
'icudtl.dat',
|
2014-05-18 15:15:53 +00:00
|
|
|
'libEGL.dll',
|
2013-08-31 01:06:27 +00:00
|
|
|
'libGLESv2.dll',
|
2014-07-31 06:12:01 +00:00
|
|
|
'msvcp120.dll',
|
|
|
|
'msvcr120.dll',
|
2014-12-10 22:17:07 +00:00
|
|
|
'content_resources_200_percent.pak',
|
2014-07-16 07:05:02 +00:00
|
|
|
'ui_resources_200_percent.pak',
|
2014-07-31 06:12:01 +00:00
|
|
|
'vccorlib120.dll',
|
2014-05-18 15:15:53 +00:00
|
|
|
'xinput1_3.dll',
|
2013-08-31 01:06:27 +00:00
|
|
|
],
|
2014-02-24 05:29:06 +00:00
|
|
|
'linux': [
|
|
|
|
'atom',
|
2014-03-18 06:10:35 +00:00
|
|
|
'content_shell.pak',
|
2014-07-18 00:42:39 +00:00
|
|
|
'icudtl.dat',
|
2014-02-24 05:29:06 +00:00
|
|
|
'libchromiumcontent.so',
|
|
|
|
'libffmpegsumo.so',
|
|
|
|
],
|
2013-08-31 01:06:27 +00:00
|
|
|
}
|
|
|
|
TARGET_DIRECTORIES = {
|
|
|
|
'darwin': [
|
|
|
|
'Atom.app',
|
|
|
|
],
|
|
|
|
'win32': [
|
|
|
|
'resources',
|
2014-05-29 11:08:59 +00:00
|
|
|
'locales',
|
2013-08-31 01:06:27 +00:00
|
|
|
],
|
2014-02-24 05:29:06 +00:00
|
|
|
'linux': [
|
|
|
|
'resources',
|
2014-05-29 11:08:59 +00:00
|
|
|
'locales',
|
2014-02-24 05:29:06 +00:00
|
|
|
],
|
2013-08-31 01:06:27 +00:00
|
|
|
}
|
2013-06-24 09:51:48 +00:00
|
|
|
|
2014-05-09 11:29:18 +00:00
|
|
|
SYSTEM_LIBRARIES = [
|
|
|
|
'libudev.so',
|
|
|
|
'libgcrypt.so',
|
2014-05-13 13:03:55 +00:00
|
|
|
'libnotify.so',
|
2014-05-09 11:29:18 +00:00
|
|
|
]
|
|
|
|
|
2013-08-12 07:00:50 +00:00
|
|
|
HEADERS_SUFFIX = [
|
|
|
|
'.h',
|
|
|
|
'.gypi',
|
|
|
|
]
|
|
|
|
HEADERS_DIRS = [
|
|
|
|
'src',
|
|
|
|
'deps/http_parser',
|
|
|
|
'deps/zlib',
|
|
|
|
'deps/uv',
|
2013-12-16 14:37:17 +00:00
|
|
|
'deps/npm',
|
|
|
|
'deps/mdb_v8',
|
2013-08-12 07:00:50 +00:00
|
|
|
]
|
|
|
|
HEADERS_FILES = [
|
2013-08-21 03:52:13 +00:00
|
|
|
'common.gypi',
|
|
|
|
'config.gypi',
|
2013-08-12 07:00:50 +00:00
|
|
|
]
|
|
|
|
|
2013-06-24 09:51:48 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
rm_rf(DIST_DIR)
|
|
|
|
os.makedirs(DIST_DIR)
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
args = parse_args()
|
|
|
|
|
2013-08-21 13:24:18 +00:00
|
|
|
force_build()
|
2014-03-11 09:04:41 +00:00
|
|
|
download_libchromiumcontent_symbols(args.url)
|
2014-03-03 01:44:16 +00:00
|
|
|
create_symbols()
|
2013-08-21 13:24:18 +00:00
|
|
|
copy_binaries()
|
2014-09-12 14:10:06 +00:00
|
|
|
copy_chromedriver()
|
2013-08-12 07:00:50 +00:00
|
|
|
copy_headers()
|
2013-06-29 03:52:58 +00:00
|
|
|
copy_license()
|
2014-05-09 11:29:18 +00:00
|
|
|
|
|
|
|
if TARGET_PLATFORM == 'linux':
|
|
|
|
copy_system_libraries()
|
|
|
|
|
2013-06-29 03:52:58 +00:00
|
|
|
create_version()
|
2013-11-18 03:41:44 +00:00
|
|
|
create_dist_zip()
|
2014-09-12 14:10:06 +00:00
|
|
|
create_chromedriver_zip()
|
2013-11-18 03:41:44 +00:00
|
|
|
create_symbols_zip()
|
2013-08-21 04:09:26 +00:00
|
|
|
create_header_tarball()
|
2013-06-24 09:51:48 +00:00
|
|
|
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser(description='Create distributions')
|
|
|
|
parser.add_argument('-u', '--url',
|
|
|
|
help='The base URL from which to download '
|
|
|
|
'libchromiumcontent (i.e., the URL you passed to '
|
|
|
|
'libchromiumcontent\'s script/upload script',
|
|
|
|
default=BASE_URL,
|
|
|
|
required=False)
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2013-07-17 02:57:25 +00:00
|
|
|
def force_build():
|
|
|
|
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
|
2014-02-26 14:08:01 +00:00
|
|
|
execute([sys.executable, build, '-c', 'Release'])
|
2013-07-17 02:57:25 +00:00
|
|
|
|
|
|
|
|
2013-06-24 09:51:48 +00:00
|
|
|
def copy_binaries():
|
2013-08-31 01:06:27 +00:00
|
|
|
for binary in TARGET_BINARIES[TARGET_PLATFORM]:
|
2013-11-25 08:02:35 +00:00
|
|
|
shutil.copy2(os.path.join(OUT_DIR, binary), DIST_DIR)
|
2013-08-31 01:06:27 +00:00
|
|
|
|
|
|
|
for directory in TARGET_DIRECTORIES[TARGET_PLATFORM]:
|
2013-11-25 08:02:35 +00:00
|
|
|
shutil.copytree(os.path.join(OUT_DIR, directory),
|
2013-08-31 01:06:27 +00:00
|
|
|
os.path.join(DIST_DIR, directory),
|
|
|
|
symlinks=True)
|
2013-06-24 09:51:48 +00:00
|
|
|
|
|
|
|
|
2014-09-12 14:10:06 +00:00
|
|
|
def copy_chromedriver():
|
|
|
|
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
|
|
|
|
execute([sys.executable, build, '-c', 'Release', '-t', 'copy_chromedriver'])
|
2014-09-20 15:24:10 +00:00
|
|
|
binary = 'chromedriver'
|
|
|
|
if TARGET_PLATFORM == 'win32':
|
|
|
|
binary += '.exe'
|
|
|
|
shutil.copy2(os.path.join(OUT_DIR, binary), DIST_DIR)
|
2014-09-12 14:10:06 +00:00
|
|
|
|
|
|
|
|
2013-08-12 07:00:50 +00:00
|
|
|
def copy_headers():
|
|
|
|
os.mkdir(DIST_HEADERS_DIR)
|
2013-08-31 00:22:16 +00:00
|
|
|
# Copy standard node headers from node. repository.
|
2013-08-12 07:00:50 +00:00
|
|
|
for include_path in HEADERS_DIRS:
|
|
|
|
abs_path = os.path.join(NODE_DIR, include_path)
|
2013-09-27 02:21:27 +00:00
|
|
|
for dirpath, _, filenames in os.walk(abs_path):
|
2013-08-12 07:00:50 +00:00
|
|
|
for filename in filenames:
|
|
|
|
extension = os.path.splitext(filename)[1]
|
|
|
|
if extension not in HEADERS_SUFFIX:
|
|
|
|
continue
|
|
|
|
copy_source_file(os.path.join(dirpath, filename))
|
2013-08-21 03:52:13 +00:00
|
|
|
for other_file in HEADERS_FILES:
|
2013-08-31 00:22:16 +00:00
|
|
|
copy_source_file(source = os.path.join(NODE_DIR, other_file))
|
|
|
|
|
|
|
|
# Copy V8 headers from chromium's repository.
|
|
|
|
src = os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor', 'download',
|
|
|
|
'libchromiumcontent', 'src')
|
2013-09-27 02:21:27 +00:00
|
|
|
for dirpath, _, filenames in os.walk(os.path.join(src, 'v8')):
|
2013-08-31 00:22:16 +00:00
|
|
|
for filename in filenames:
|
|
|
|
extension = os.path.splitext(filename)[1]
|
|
|
|
if extension not in HEADERS_SUFFIX:
|
|
|
|
continue
|
|
|
|
copy_source_file(source=os.path.join(dirpath, filename),
|
|
|
|
start=src,
|
|
|
|
destination=os.path.join(DIST_HEADERS_DIR, 'deps'))
|
2013-08-12 07:00:50 +00:00
|
|
|
|
|
|
|
|
2013-06-29 03:52:58 +00:00
|
|
|
def copy_license():
|
2013-09-27 02:21:27 +00:00
|
|
|
shutil.copy2(os.path.join(SOURCE_ROOT, 'LICENSE'), DIST_DIR)
|
2013-06-29 03:52:58 +00:00
|
|
|
|
|
|
|
|
2014-05-09 11:29:18 +00:00
|
|
|
def copy_system_libraries():
|
|
|
|
ldd = execute(['ldd', os.path.join(OUT_DIR, 'atom')])
|
|
|
|
lib_re = re.compile('\t(.*) => (.+) \(.*\)$')
|
|
|
|
for line in ldd.splitlines():
|
|
|
|
m = lib_re.match(line)
|
|
|
|
if not m:
|
|
|
|
continue
|
|
|
|
for i, library in enumerate(SYSTEM_LIBRARIES):
|
|
|
|
real_library = m.group(1)
|
|
|
|
if real_library.startswith(library):
|
2014-05-13 13:03:32 +00:00
|
|
|
shutil.copyfile(m.group(2), os.path.join(DIST_DIR, real_library))
|
2014-05-09 11:29:18 +00:00
|
|
|
SYSTEM_LIBRARIES[i] = real_library
|
|
|
|
|
|
|
|
|
2013-06-29 03:52:58 +00:00
|
|
|
def create_version():
|
|
|
|
version_path = os.path.join(SOURCE_ROOT, 'dist', 'version')
|
|
|
|
with open(version_path, 'w') as version_file:
|
2014-05-07 06:34:53 +00:00
|
|
|
version_file.write(ATOM_SHELL_VERSION)
|
2013-06-29 03:52:58 +00:00
|
|
|
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
def download_libchromiumcontent_symbols(url):
|
|
|
|
brightray_dir = os.path.join(SOURCE_ROOT, 'vendor', 'brightray', 'vendor')
|
|
|
|
target_dir = os.path.join(brightray_dir, 'download', 'libchromiumcontent')
|
2014-03-11 09:04:41 +00:00
|
|
|
symbols_path = os.path.join(target_dir, 'Release', SYMBOL_NAME)
|
2013-11-26 13:23:50 +00:00
|
|
|
if os.path.exists(symbols_path):
|
|
|
|
return
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
download = os.path.join(brightray_dir, 'libchromiumcontent', 'script',
|
|
|
|
'download')
|
2014-01-31 04:09:43 +00:00
|
|
|
subprocess.check_call([sys.executable, download, '-f', '-s', '-c',
|
|
|
|
LIBCHROMIUMCONTENT_COMMIT, url, target_dir])
|
2013-11-25 08:02:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
def create_symbols():
|
2014-08-13 12:08:07 +00:00
|
|
|
directory = 'Atom-Shell.breakpad.syms'
|
|
|
|
rm_rf(os.path.join(OUT_DIR, directory))
|
|
|
|
|
2013-11-18 03:41:44 +00:00
|
|
|
build = os.path.join(SOURCE_ROOT, 'script', 'build.py')
|
|
|
|
subprocess.check_output([sys.executable, build, '-c', 'Release',
|
|
|
|
'-t', 'atom_dump_symbols'])
|
|
|
|
|
2013-11-25 08:02:35 +00:00
|
|
|
shutil.copytree(os.path.join(OUT_DIR, directory),
|
2013-11-18 03:41:44 +00:00
|
|
|
os.path.join(DIST_DIR, directory),
|
|
|
|
symlinks=True)
|
|
|
|
|
|
|
|
|
|
|
|
def create_dist_zip():
|
2014-06-04 15:24:38 +00:00
|
|
|
dist_name = 'atom-shell-{0}-{1}-{2}.zip'.format(ATOM_SHELL_VERSION,
|
|
|
|
TARGET_PLATFORM, DIST_ARCH)
|
2013-08-31 02:35:01 +00:00
|
|
|
zip_file = os.path.join(SOURCE_ROOT, 'dist', dist_name)
|
2013-06-24 09:51:48 +00:00
|
|
|
|
2013-06-29 03:52:58 +00:00
|
|
|
with scoped_cwd(DIST_DIR):
|
2013-10-26 09:23:16 +00:00
|
|
|
files = TARGET_BINARIES[TARGET_PLATFORM] + ['LICENSE', 'version']
|
2014-05-09 11:29:18 +00:00
|
|
|
if TARGET_PLATFORM == 'linux':
|
|
|
|
files += SYSTEM_LIBRARIES
|
2013-10-26 09:23:16 +00:00
|
|
|
dirs = TARGET_DIRECTORIES[TARGET_PLATFORM]
|
|
|
|
make_zip(zip_file, files, dirs)
|
2013-06-24 09:51:48 +00:00
|
|
|
|
|
|
|
|
2014-09-12 14:10:06 +00:00
|
|
|
def create_chromedriver_zip():
|
2014-09-20 15:09:49 +00:00
|
|
|
dist_name = 'chromedriver-{0}-{1}-{2}.zip'.format(get_chromedriver_version(),
|
2014-09-12 14:10:06 +00:00
|
|
|
TARGET_PLATFORM, DIST_ARCH)
|
|
|
|
zip_file = os.path.join(SOURCE_ROOT, 'dist', dist_name)
|
|
|
|
|
|
|
|
with scoped_cwd(DIST_DIR):
|
|
|
|
files = ['LICENSE']
|
|
|
|
if TARGET_PLATFORM == 'win32':
|
|
|
|
files += ['chromedriver.exe']
|
|
|
|
else:
|
|
|
|
files += ['chromedriver']
|
|
|
|
make_zip(zip_file, files, [])
|
|
|
|
|
|
|
|
|
2013-11-18 03:41:44 +00:00
|
|
|
def create_symbols_zip():
|
2014-06-04 15:24:38 +00:00
|
|
|
dist_name = 'atom-shell-{0}-{1}-{2}-symbols.zip'.format(ATOM_SHELL_VERSION,
|
|
|
|
TARGET_PLATFORM,
|
|
|
|
DIST_ARCH)
|
2013-11-18 03:41:44 +00:00
|
|
|
zip_file = os.path.join(SOURCE_ROOT, 'dist', dist_name)
|
|
|
|
|
|
|
|
with scoped_cwd(DIST_DIR):
|
|
|
|
files = ['LICENSE', 'version']
|
2013-11-25 08:02:35 +00:00
|
|
|
dirs = ['Atom-Shell.breakpad.syms']
|
2013-11-18 03:41:44 +00:00
|
|
|
make_zip(zip_file, files, dirs)
|
|
|
|
|
|
|
|
|
2013-08-21 04:09:26 +00:00
|
|
|
def create_header_tarball():
|
|
|
|
with scoped_cwd(DIST_DIR):
|
|
|
|
tarball = tarfile.open(name=DIST_HEADERS_DIR + '.tar.gz', mode='w:gz')
|
|
|
|
tarball.add(DIST_HEADERS_NAME)
|
|
|
|
tarball.close()
|
|
|
|
|
|
|
|
|
2013-08-31 00:22:16 +00:00
|
|
|
def copy_source_file(source, start=NODE_DIR, destination=DIST_HEADERS_DIR):
|
|
|
|
relative = os.path.relpath(source, start=start)
|
|
|
|
final_destination = os.path.join(destination, relative)
|
|
|
|
safe_mkdir(os.path.dirname(final_destination))
|
|
|
|
shutil.copy2(source, final_destination)
|
2013-08-12 07:00:50 +00:00
|
|
|
|
|
|
|
|
2013-06-24 09:51:48 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|