mac: Add target to dump breakpad symbols.

This commit is contained in:
Cheng Zhao 2013-11-15 22:52:08 +08:00
parent 67dd596386
commit 1d2de6d1fb
3 changed files with 274 additions and 4 deletions

View file

@ -82,10 +82,11 @@
}], # OS=="win"
],
}],
['_target_name.startswith("breakpad") or _target_name in ["crash_report_sender"]', {
['_target_name.startswith("breakpad") or _target_name in ["crash_report_sender", "dump_syms"]', {
'xcode_settings': {
'WARNING_CFLAGS': [
'-Wno-deprecated-declarations',
'-Wno-unused-private-field',
'-Wno-unused-function',
],
},
@ -125,6 +126,9 @@
],
},
},
'xcode_settings': {
'DEBUG_INFORMATION_FORMAT': 'dwarf-with-dsym',
},
},
'conditions': [
# Settings to compile with clang under OS X.