| 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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 'dependencies': [ | 275 'dependencies': [ |
| 276 'skia_lib.gyp:skia_lib', | 276 'skia_lib.gyp:skia_lib', |
| 277 'tools.gyp:picture_renderer', | 277 'tools.gyp:picture_renderer', |
| 278 ], | 278 ], |
| 279 }, | 279 }, |
| 280 { | 280 { |
| 281 'target_name': 'filter', | 281 'target_name': 'filter', |
| 282 'type': 'executable', | 282 'type': 'executable', |
| 283 'include_dirs' : [ | 283 'include_dirs' : [ |
| 284 '../src/core', | 284 '../src/core', |
| 285 '../debugger', | 285 '../src/utils/debugger', |
| 286 ], | 286 ], |
| 287 'sources': [ | 287 'sources': [ |
| 288 '../tools/filtermain.cpp', | 288 '../tools/filtermain.cpp', |
| 289 '../tools/path_utils.h', | 289 '../tools/path_utils.h', |
| 290 '../tools/path_utils.cpp', | 290 '../tools/path_utils.cpp', |
| 291 '../src/utils/debugger/SkDrawCommand.h', | 291 '../src/utils/debugger/SkDrawCommand.h', |
| 292 '../src/utils/debugger/SkDrawCommand.cpp', | 292 '../src/utils/debugger/SkDrawCommand.cpp', |
| 293 '../src/utils/debugger/SkDebugCanvas.h', | 293 '../src/utils/debugger/SkDebugCanvas.h', |
| 294 '../src/utils/debugger/SkDebugCanvas.cpp', | 294 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 295 '../src/utils/debugger/SkObjectParser.h', | 295 '../src/utils/debugger/SkObjectParser.h', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 }, | 333 }, |
| 334 ], | 334 ], |
| 335 ], | 335 ], |
| 336 } | 336 } |
| 337 | 337 |
| 338 # Local Variables: | 338 # Local Variables: |
| 339 # tab-width:2 | 339 # tab-width:2 |
| 340 # indent-tabs-mode:nil | 340 # indent-tabs-mode:nil |
| 341 # End: | 341 # End: |
| 342 # vim: set expandtab tabstop=2 shiftwidth=2: | 342 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |