| 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 'target_name': 'filter', | 280 'target_name': 'filter', |
| 281 'type': 'executable', | 281 'type': 'executable', |
| 282 'include_dirs' : [ | 282 'include_dirs' : [ |
| 283 '../src/core', | 283 '../src/core', |
| 284 '../debugger', | 284 '../debugger', |
| 285 ], | 285 ], |
| 286 'sources': [ | 286 'sources': [ |
| 287 '../tools/filtermain.cpp', | 287 '../tools/filtermain.cpp', |
| 288 '../tools/path_utils.h', | 288 '../tools/path_utils.h', |
| 289 '../tools/path_utils.cpp', | 289 '../tools/path_utils.cpp', |
| 290 '../debugger/SkDrawCommand.h', | 290 '../src/utils/debugger/SkDrawCommand.h', |
| 291 '../debugger/SkDrawCommand.cpp', | 291 '../src/utils/debugger/SkDrawCommand.cpp', |
| 292 '../debugger/SkDebugCanvas.h', | 292 '../src/utils/debugger/SkDebugCanvas.h', |
| 293 '../debugger/SkDebugCanvas.cpp', | 293 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 294 '../debugger/SkObjectParser.h', | 294 '../src/utils/debugger/SkObjectParser.h', |
| 295 '../debugger/SkObjectParser.cpp', | 295 '../src/utils/debugger/SkObjectParser.cpp', |
| 296 ], | 296 ], |
| 297 'dependencies': [ | 297 'dependencies': [ |
| 298 'skia_lib.gyp:skia_lib', | 298 'skia_lib.gyp:skia_lib', |
| 299 'tools.gyp:picture_utils', | 299 'tools.gyp:picture_utils', |
| 300 ], | 300 ], |
| 301 }, | 301 }, |
| 302 ], | 302 ], |
| 303 'conditions': [ | 303 'conditions': [ |
| 304 ['skia_win_debuggers_path and skia_os == "win"', | 304 ['skia_win_debuggers_path and skia_os == "win"', |
| 305 { | 305 { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 332 }, | 332 }, |
| 333 ], | 333 ], |
| 334 ], | 334 ], |
| 335 } | 335 } |
| 336 | 336 |
| 337 # Local Variables: | 337 # Local Variables: |
| 338 # tab-width:2 | 338 # tab-width:2 |
| 339 # indent-tabs-mode:nil | 339 # indent-tabs-mode:nil |
| 340 # End: | 340 # End: |
| 341 # vim: set expandtab tabstop=2 shiftwidth=2: | 341 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |