Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3346)

Unified Diff: breakpad/breakpad.gyp

Issue 113114: OS X Breakpad cleanup. (Closed)
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/app/breakpad_mac_stubs.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
« no previous file with comments | « no previous file | chrome/app/breakpad_mac_stubs.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698