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.
|
+ }], |
+ ], |
+ ], |
+ }, |
+ }, |
+ }, |
+ ], |
+ ], |
+ }, |
], |
} |