forked from tidev/titanium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SConstruct
145 lines (120 loc) · 4.45 KB
/
SConstruct
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#!/usr/bin/env python
#
# Top level scons script
#
import os, shutil, platform, os.path as path, sys
import package
import SCons.Variables
import SCons.Environment
import subprocess
from SCons.Script import *
# read version from the build folder
# this is used by other python scripts too
cwd = os.path.abspath(os.path.dirname(sys._getframe(0).f_code.co_filename))
sys.path.append(path.join(cwd,"build"))
sys.path.append(path.join(cwd,"support","android"))
import titanium_version, ant
from androidsdk import AndroidSDK
version = titanium_version.version
# allow it to be overriden on command line or in env
if os.environ.has_key('PRODUCT_VERSION'):
version = os.environ['PRODUCT_VERSION']
elif ARGUMENTS.get('PRODUCT_VERSION', 0):
version = ARGUMENTS.get('PRODUCT_VERSION')
# get the githash for the build so we can always pull this build from a specific
# commit. We're getting it here so we can pass it to android's ant build
# in order to get it into build.properties
p = subprocess.Popen(["git","log","--oneline","--max-count=1"],stderr=subprocess.PIPE, stdout=subprocess.PIPE)
githash = p.communicate()[0][0:7].split('\n')[0]
#
# this is messy, but i don't care, scons makes it too
# hard to include python after an external SConscript
#
build_dirs = []
if not ARGUMENTS.get('iphone',0):
build_dirs.append('android/titanium')
if platform.system() == "Darwin" and not ARGUMENTS.get('android',0):
build_dirs.append('iphone')
flags = ''
only_package = False
if ARGUMENTS.get("package",0):
only_package = True
clean = "clean" in COMMAND_LINE_TARGETS or ARGUMENTS.get("clean", 0)
run_drillbit = "drillbit" in COMMAND_LINE_TARGETS or ARGUMENTS.get("drillbit",0)
if clean and os.path.exists('iphone/iphone/build'):
shutil.rmtree('iphone/iphone/build')
# TEMP until android is merged
build_type = 'full'
build_dirs = ['iphone', 'android']
force_iphone = False
if ARGUMENTS.get('iphone',0):
build_type='iphone'
build_dirs=['iphone']
if ARGUMENTS.get('android',0):
build_type='android'
build_dirs=['android']
if ARGUMENTS.get('ipad',0):
build_type='ipad'
build_dirs=['ipad']
if ARGUMENTS.get('force_iphone',0):
force_iphone = True
if ARGUMENTS.get('COMPILER_FLAGS', 0):
flags = ARGUMENTS.get('COMPILER_FLAGS')
env = Environment()
Export("env cwd version")
if build_type in ['full', 'android'] and not only_package:
d = os.getcwd()
os.chdir('android')
try:
sdk = AndroidSDK(ARGUMENTS.get("android_sdk", None), 7)
targets = ["full.build", "build.titanium.javadoc"]
if clean: targets = ["clean"]
elif "ant_targets" in ARGUMENTS: targets = ARGUMENTS["ant_targets"].split(",")
ant.build(targets=targets, properties={"build.version": version, "build.githash": githash,
"android.sdk": sdk.get_android_sdk(), "android.platform": sdk.get_platform_dir(), "google.apis": sdk.get_google_apis_dir()})
finally:
os.chdir(d)
if build_type in ['full', 'iphone', 'ipad'] and not only_package \
and (platform.system() == "Darwin" or force_iphone):
d = os.getcwd()
os.chdir('iphone')
try:
#output = 0
if clean: build_type = "clean"
output = os.system("scons PRODUCT_VERSION=%s COMPILER_FLAGS='%s' BUILD_TYPE='%s'" % (version,flags,build_type))
if output!=0:
sys.stderr.write("BUILD FAILED!!!!\n")
# beep, please
if platform.system() == "Darwin":
os.system("say 'OH NO...the build failed!!!'")
os.system("printf \"\a\"")
os.system("printf \"\a\"")
os.system("printf \"\a\"")
sys.exit(output)
finally:
os.chdir(d)
def package_sdk(target, source, env):
android = build_type in ['full', 'android']
iphone = build_type in ['full', 'iphone']
ipad = build_type in ['full', 'ipad']
package_all = ARGUMENTS.get('package_all', 0)
version_tag = ARGUMENTS.get('version_tag', version)
print "Packaging MobileSDK (%s)..." % version_tag
if package_all:
package.Packager().build_all_platforms(os.path.abspath('dist'), version, android, iphone, ipad, version_tag)
else:
package.Packager().build(os.path.abspath('dist'), version, android, iphone, ipad, version_tag)
def drillbit_builder(target, source, env):
sys.path.append("drillbit")
import drillbit
drillbit.build_and_run(android_sdk=sdk.get_android_sdk())
if run_drillbit:
drillbit = Builder(action = drillbit_builder)
env.Append(BUILDERS = {'BuildAndRunDrillbit': drillbit})
env.BuildAndRunDrillbit('#dummy-drillbit-target', [])
package_builder = Builder(action = package_sdk)
env.Append(BUILDERS = {'PackageMobileSDK': package_builder})
env.PackageMobileSDK("#dummy-sdk-target", [])
if clean:
# don't error
Exit(0)