51 lines
1.2 KiB
Python
51 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import platform
|
|
import sys
|
|
|
|
|
|
BASE_URL = 'http://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'
|
|
LIBCHROMIUMCONTENT_COMMIT = 'f1ad1412461ba3345a27cfe935ffc872dba0ac5b'
|
|
|
|
PLATFORM = {
|
|
'cygwin': 'win32',
|
|
'darwin': 'darwin',
|
|
'linux2': 'linux',
|
|
'win32': 'win32',
|
|
}[sys.platform]
|
|
|
|
verbose_mode = False
|
|
|
|
|
|
def get_target_arch():
|
|
# Always build 64bit on OS X.
|
|
if PLATFORM == 'darwin':
|
|
return 'x64'
|
|
# Only build for host's arch on Linux.
|
|
elif PLATFORM == 'linux':
|
|
if platform.architecture()[0] == '32bit':
|
|
return 'ia32'
|
|
else:
|
|
return 'x64'
|
|
# On Windows it depends on user.
|
|
elif PLATFORM == 'win32':
|
|
target_arch_path = os.path.join(__file__, '..', '..', '..', 'vendor',
|
|
'brightray', 'vendor', 'download',
|
|
'libchromiumcontent', '.target_arch')
|
|
with open(os.path.normpath(target_arch_path)) as f:
|
|
target_arch = f.read().strip()
|
|
return target_arch
|
|
# Maybe we will support other platforms in future.
|
|
else:
|
|
return 'x64'
|
|
|
|
|
|
def enable_verbose_mode():
|
|
print 'Running in verbose mode'
|
|
global verbose_mode
|
|
verbose_mode = True
|
|
|
|
|
|
def is_verbose_mode():
|
|
return verbose_mode
|