electron/script/lib/config.py

63 lines
1.5 KiB
Python
Raw Normal View History

2014-01-31 04:18:30 +00:00
#!/usr/bin/env python
2015-04-11 10:26:15 +00:00
import errno
import os
2014-06-04 15:24:38 +00:00
import platform
import sys
BASE_URL = os.getenv('LIBCHROMIUMCONTENT_MIRROR') or \
'http://github-janky-artifacts.s3.amazonaws.com/libchromiumcontent'
2015-09-03 12:07:29 +00:00
LIBCHROMIUMCONTENT_COMMIT = 'f5489a774b719e9e979675c17b99ed45a05aacf7'
2014-06-04 15:24:38 +00:00
PLATFORM = {
2014-06-04 15:24:38 +00:00
'cygwin': 'win32',
'darwin': 'darwin',
'linux2': 'linux',
'win32': 'win32',
}[sys.platform]
2014-12-08 17:00:35 +00:00
verbose_mode = False
def get_target_arch():
2015-07-01 07:47:21 +00:00
try:
target_arch_path = os.path.join(__file__, '..', '..', '..', 'vendor',
'brightray', 'vendor', 'download',
'libchromiumcontent', '.target_arch')
with open(os.path.normpath(target_arch_path)) as f:
return f.read().strip()
except IOError as e:
if e.errno != errno.ENOENT:
raise
if PLATFORM == 'win32':
2015-04-11 10:26:15 +00:00
return 'ia32'
else:
return 'x64'
def get_chromedriver_version():
return 'v2.15'
2015-04-12 04:00:02 +00:00
def s3_config():
config = (os.environ.get('ATOM_SHELL_S3_BUCKET', ''),
os.environ.get('ATOM_SHELL_S3_ACCESS_KEY', ''),
os.environ.get('ATOM_SHELL_S3_SECRET_KEY', ''))
message = ('Error: Please set the $ATOM_SHELL_S3_BUCKET, '
'$ATOM_SHELL_S3_ACCESS_KEY, and '
'$ATOM_SHELL_S3_SECRET_KEY environment variables')
assert all(len(c) for c in config), message
return config
2014-12-08 17:00:35 +00:00
def enable_verbose_mode():
print 'Running in verbose mode'
global verbose_mode
verbose_mode = True
2014-12-08 17:00:35 +00:00
def is_verbose_mode():
return verbose_mode