| 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 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 'jsoncpp.gyp:jsoncpp', | 280 'jsoncpp.gyp:jsoncpp', |
| 281 'skia_lib.gyp:skia_lib', | 281 'skia_lib.gyp:skia_lib', |
| 282 'tools.gyp:picture_utils', | 282 'tools.gyp:picture_utils', |
| 283 ], | 283 ], |
| 284 'conditions': [ | 284 'conditions': [ |
| 285 ['skia_gpu == 1', | 285 ['skia_gpu == 1', |
| 286 { | 286 { |
| 287 'include_dirs' : [ | 287 'include_dirs' : [ |
| 288 '../src/gpu', | 288 '../src/gpu', |
| 289 ], | 289 ], |
| 290 'dependencies': [ |
| 291 'gputest.gyp:skgputest', |
| 292 ], |
| 290 }, | 293 }, |
| 291 ], | 294 ], |
| 292 ], | 295 ], |
| 293 }, | 296 }, |
| 294 { | 297 { |
| 295 'target_name': 'render_pdfs', | 298 'target_name': 'render_pdfs', |
| 296 'type': 'executable', | 299 'type': 'executable', |
| 297 'sources': [ | 300 'sources': [ |
| 298 '../tools/render_pdfs_main.cpp', | 301 '../tools/render_pdfs_main.cpp', |
| 299 '../tools/PdfRenderer.cpp', | 302 '../tools/PdfRenderer.cpp', |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 'type': 'executable', | 491 'type': 'executable', |
| 489 'sources': [ | 492 'sources': [ |
| 490 '../tools/win_lcid.cpp', | 493 '../tools/win_lcid.cpp', |
| 491 ], | 494 ], |
| 492 }, | 495 }, |
| 493 ], | 496 ], |
| 494 }, | 497 }, |
| 495 ], | 498 ], |
| 496 ], | 499 ], |
| 497 } | 500 } |
| OLD | NEW |