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

Unified Diff: gyp/tools.gyp

Issue 12387018: collect minidump if it chrashes (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 10 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 | tools/render_pdfs_main.cpp » ('j') | tools/render_pdfs_main.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/tools.gyp
===================================================================
--- gyp/tools.gyp (revision 7895)
+++ gyp/tools.gyp (working copy)
@@ -176,6 +176,7 @@
'pdf.gyp:pdf',
'ports.gyp:ports',
'tools.gyp:picture_utils',
+ 'tools.gyp:win_dbghelp',
borenet 2013/02/28 20:28:19 Please make this opt-in.
edisonn 2013/03/07 19:25:03 Done.
],
},
{
@@ -226,6 +227,34 @@
'tools.gyp:picture_utils',
],
},
+ {
+ 'target_name': 'win_dbghelp',
+ 'type': 'static_library',
+ 'sources': [
+ '../tools/win_dbghelp.h',
+ '../tools/win_dbghelp.cpp',
+ ],
+ 'conditions': [
+ ['skia_os == "win"',
+ {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalDependencies': [
+ 'conditions': [
+ ['skia_arch_width == 64', {
+ 'c:/DbgHelp/x64/DbgHelp.lib',
+ }],
+ ['skia_arch_width == 32', {
+ 'c:/DbgHelp/DbgHelp.lib',
edisonn 2013/02/28 17:00:48 q: can gyp set this path from an environment varia
borenet 2013/02/28 20:28:19 Not directly, that I'm aware of, but it could come
edisonn 2013/03/07 19:25:03 Done.
+ }],
+ ],
+ ],
+ },
+ },
+ },
+ ],
+ ],
+ },
],
}
« no previous file with comments | « no previous file | tools/render_pdfs_main.cpp » ('j') | tools/render_pdfs_main.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698