OLD | NEW |
1 # GYP file to build various tools. | 1 # GYP file to build various tools. |
2 # | 2 # |
3 # To build on Linux: | 3 # To build on Linux: |
4 # ./gyp_skia tools.gyp && make tools | 4 # ./gyp_skia tools.gyp && make tools |
5 # | 5 # |
6 # Building on other platforms not tested yet. | 6 # Building on other platforms not tested yet. |
7 # | 7 # |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'apptype_console.gypi', | 10 'apptype_console.gypi', |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 '../debugger/SkObjectParser.h', | 261 '../debugger/SkObjectParser.h', |
262 '../debugger/SkObjectParser.cpp', | 262 '../debugger/SkObjectParser.cpp', |
263 ], | 263 ], |
264 'dependencies': [ | 264 'dependencies': [ |
265 'skia_base_libs.gyp:skia_base_libs', | 265 'skia_base_libs.gyp:skia_base_libs', |
266 'effects.gyp:effects', | 266 'effects.gyp:effects', |
267 'images.gyp:images', | 267 'images.gyp:images', |
268 'tools.gyp:picture_utils', | 268 'tools.gyp:picture_utils', |
269 ], | 269 ], |
270 }, | 270 }, |
271 { | 271 ], |
272 'target_name': 'win_dbghelp', | 272 'conditions': [ |
273 'type': 'static_library', | 273 ['skia_win_debuggers_path and skia_os == "win"', |
274 'defines': [ | 274 { |
275 'SK_CDB_PATH="<(skia_win_debuggers_path)"', | 275 'targets': [ |
276 ], | 276 { |
277 'sources': [ | 277 'target_name': 'win_dbghelp', |
278 '../tools/win_dbghelp.h', | 278 'type': 'static_library', |
279 '../tools/win_dbghelp.cpp', | 279 'defines': [ |
280 ], | 280 'SK_CDB_PATH="<(skia_win_debuggers_path)"', |
281 }, | 281 ], |
| 282 'sources': [ |
| 283 '../tools/win_dbghelp.h', |
| 284 '../tools/win_dbghelp.cpp', |
| 285 ], |
| 286 }, |
| 287 ], |
| 288 }, |
| 289 ], |
282 ], | 290 ], |
283 } | 291 } |
284 | 292 |
285 # Local Variables: | 293 # Local Variables: |
286 # tab-width:2 | 294 # tab-width:2 |
287 # indent-tabs-mode:nil | 295 # indent-tabs-mode:nil |
288 # End: | 296 # End: |
289 # vim: set expandtab tabstop=2 shiftwidth=2: | 297 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |