Index: breakpad/breakpad.gyp |
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp |
index ac70ca9e02afaa03f335b60b7650041736e61d4b..551215c387e8fe55bb4f1782d502244686f76a06 100644 |
--- a/breakpad/breakpad.gyp |
+++ b/breakpad/breakpad.gyp |
@@ -89,12 +89,52 @@ |
} |
}, |
{ |
+ 'target_name': 'dump_syms', |
+ 'type': 'executable', |
+ 'include_dirs': [ |
+ 'src/common/mac/', |
Mark Mentovai
2009/05/07 19:54:10
It is customary to not use a trailing slash.
|
+ ], |
+ 'dependencies': [ |
+ 'breakpad_utilities', |
+ ], |
+ 'sources': [ |
+ 'src/common/mac/dwarf/bytereader.cc', |
+ 'src/common/mac/dwarf/dwarf2reader.cc', |
+ 'src/common/mac/dwarf/functioninfo.cc', |
+ 'src/common/mac/dump_syms.mm', |
+ 'src/tools/mac/dump_syms/dump_syms_tool.mm', |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
+ ], |
+ } |
+ }, |
+ { |
+ 'target_name': 'symupload', |
+ 'type': 'executable', |
+ 'include_dirs': [ |
+ 'src/common/mac/', |
Mark Mentovai
2009/05/07 19:54:10
Same.
|
+ ], |
+ 'sources': [ |
+ 'src/common/mac/HTTPMultipartUpload.m', |
+ 'src/tools/mac/symupload/symupload.m', |
+ ], |
+ 'link_settings': { |
+ 'libraries': [ |
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
+ ], |
+ } |
+ }, |
+ { |
'target_name': 'breakpad', |
'type': '<(library)', |
'dependencies': [ |
'breakpad_utilities', |
'crash_inspector', |
'crash_report_sender', |
+ 'dump_syms', |
Mark Mentovai
2009/05/07 19:54:10
libbreakpad does not depend on dump_syms or symupl
|
+ 'symupload', |
], |
'sources': [ |
'src/client/mac/handler/protected_memory_allocator.cc', |