25 lines
		
	
	
	
		
			520 B
			
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			520 B
			
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import platform
 | 
						|
import sys
 | 
						|
 | 
						|
BASE_URL = 'https://gh-contractor-zcbenz.s3.amazonaws.com/libchromiumcontent'
 | 
						|
LIBCHROMIUMCONTENT_COMMIT = '2dfdf169b582e3f051e1fec3dd7df2bc179e1aa6'
 | 
						|
 | 
						|
ARCH = {
 | 
						|
    'cygwin': '32bit',
 | 
						|
    'darwin': '64bit',
 | 
						|
    'linux2': platform.architecture()[0],
 | 
						|
    'win32': '32bit',
 | 
						|
}[sys.platform]
 | 
						|
DIST_ARCH = {
 | 
						|
    '32bit': 'ia32',
 | 
						|
    '64bit': 'x64',
 | 
						|
}[ARCH]
 | 
						|
 | 
						|
TARGET_PLATFORM = {
 | 
						|
  'cygwin': 'win32',
 | 
						|
  'darwin': 'darwin',
 | 
						|
  'linux2': 'linux',
 | 
						|
  'win32': 'win32',
 | 
						|
}[sys.platform]
 |