| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 ], | 258 ], |
| 259 'include_dirs': [ | 259 'include_dirs': [ |
| 260 '../src/core/', | 260 '../src/core/', |
| 261 ], | 261 ], |
| 262 'dependencies': [ | 262 'dependencies': [ |
| 263 'flags.gyp:flags', | 263 'flags.gyp:flags', |
| 264 'skia_lib.gyp:skia_lib', | 264 'skia_lib.gyp:skia_lib', |
| 265 ], | 265 ], |
| 266 }, | 266 }, |
| 267 { | 267 { |
| 268 # Superseded by dm, should be removed. |
| 268 'target_name': 'skp2svg', | 269 'target_name': 'skp2svg', |
| 269 'type': 'executable', | 270 'type': 'executable', |
| 270 'sources': [ | 271 'sources': [ |
| 271 '../experimental/svg/skp2svg.cpp', | 272 '../src/svg/skp2svg.cpp', |
| 272 '../experimental/svg/SkSVGDevice.cpp', | |
| 273 '../experimental/svg/SkSVGDevice.h', | |
| 274 '../tools/LazyDecodeBitmap.cpp', | 273 '../tools/LazyDecodeBitmap.cpp', |
| 275 ], | 274 ], |
| 276 'include_dirs': [ | 275 'include_dirs': [ |
| 277 '../src/core/', | 276 '../src/core/', |
| 278 '../src/lazy/', | 277 '../src/lazy/', |
| 279 '../tools/', | 278 '../tools/', |
| 280 ], | 279 ], |
| 281 'dependencies': [ | 280 'dependencies': [ |
| 282 'flags.gyp:flags', | 281 'flags.gyp:flags', |
| 283 'skia_lib.gyp:skia_lib', | 282 'skia_lib.gyp:skia_lib', |
| 283 'svg.gyp:svg', |
| 284 'xml.gyp:xml', | 284 'xml.gyp:xml', |
| 285 ], | 285 ], |
| 286 }, | 286 }, |
| 287 { | 287 { |
| 288 'target_name': 'gpuveto', | 288 'target_name': 'gpuveto', |
| 289 'type': 'executable', | 289 'type': 'executable', |
| 290 'sources': [ | 290 'sources': [ |
| 291 '../tools/gpuveto.cpp', | 291 '../tools/gpuveto.cpp', |
| 292 '../tools/LazyDecodeBitmap.cpp', | 292 '../tools/LazyDecodeBitmap.cpp', |
| 293 ], | 293 ], |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 'flags.gyp:flags', | 761 'flags.gyp:flags', |
| 762 'skia_lib.gyp:skia_lib', | 762 'skia_lib.gyp:skia_lib', |
| 763 'resources', | 763 'resources', |
| 764 ], | 764 ], |
| 765 }, | 765 }, |
| 766 ], | 766 ], |
| 767 }, | 767 }, |
| 768 ], | 768 ], |
| 769 ], | 769 ], |
| 770 } | 770 } |
| OLD | NEW |