@@ -117,8 +117,8 @@ def generate_target_nw(platform_name, arch, version):
117
117
'libGLESv2.dll' ,
118
118
'nw.exe' ,
119
119
'nw.pak' ,
120
- 'nw.exp' ,
121
- 'nw.lib' ,
120
+ # 'nw.exp',
121
+ # 'nw.lib',
122
122
# 'nwsnapshot.exe',
123
123
'credits.html' ,
124
124
]
@@ -165,7 +165,8 @@ def generate_target_symbols(platform_name, arch, version):
165
165
target ['input' ] = ['nw.breakpad.' + arch ]
166
166
elif platform_name == 'win' :
167
167
target ['compress' ] = 'zip'
168
- target ['input' ] = ['nw.exe.pdb' ]
168
+ # target['input'] = ['nw.exe.pdb']
169
+ target ['input' ] = []
169
170
elif platform_name == 'osx' :
170
171
target ['compress' ] = 'tar.gz'
171
172
target ['input' ] = [
@@ -185,7 +186,9 @@ def generate_target_others(platform_name, arch, version):
185
186
target ['output' ] = ''
186
187
target ['compress' ] = None
187
188
if platform_name == 'win' :
188
- target ['input' ] = ['nw.exp' , 'nw.lib' ]
189
+ target ['input' ] = ['nw.exp' , 'nw.lib' , 'nw.sym.7z' ]
190
+ elif platform_name == 'osx' :
191
+ target ['input' ] = ['node-webkit.breakpad.tar.bz2' ]
189
192
else :
190
193
target ['input' ] = []
191
194
return target
@@ -248,6 +251,8 @@ def make_packages(targets):
248
251
# now let's do it
249
252
os .mkdir (dist_dir )
250
253
for t in targets :
254
+ if len (t ['input' ]) == 0 :
255
+ continue
251
256
if t ['compress' ] == None :
252
257
if t ['output' ] != '' :
253
258
os .mkdir (dist_dir + t ['output' ])
0 commit comments