Skip to content

Commit

Permalink
Fix #5023: include minidump_stackwalk in Linux and OSX sdk build
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerwang committed Jun 24, 2016
1 parent c416f7e commit 8554fb2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions nw.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,11 @@
'<(DEPTH)/chrome/chrome.gyp:chromedriver',
],
}],
['nwjs_sdk==1 and (OS=="linux" or OS=="mac")', {
'dependencies': [
'<(DEPTH)/breakpad/breakpad.gyp:minidump_stackwalk',
],
}],
['OS == "linux"', {
'dependencies': [
'strip_binaries',
Expand Down
2 changes: 2 additions & 0 deletions tools/package_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def generate_target_nw(platform_name, arch, version):
target['input'].append('nwjc')
target['input'].append('payload')
target['input'].append('chromedriver')
target['input'].append('minidump_stackwalk')
if flavor in ['nacl','sdk'] :
target['input'] += ['nacl_helper', 'nacl_helper_bootstrap', 'pnacl']
if arch == 'x64':
Expand Down Expand Up @@ -214,6 +215,7 @@ def generate_target_nw(platform_name, arch, version):
target['input'].append('nwjc')
target['input'].append('payload')
target['input'].append('chromedriver')
target['input'].append('minidump_stackwalk')
else:
print 'Unsupported platform: ' + platform_name
exit(-1)
Expand Down

0 comments on commit 8554fb2

Please sign in to comment.