| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 'bench.gyp:bench_timer', | 285 'bench.gyp:bench_timer', |
| 286 'flags.gyp:flags', | 286 'flags.gyp:flags', |
| 287 'skia_lib.gyp:skia_lib', | 287 'skia_lib.gyp:skia_lib', |
| 288 'tools.gyp:picture_utils', | 288 'tools.gyp:picture_utils', |
| 289 'tools.gyp:picture_renderer', | 289 'tools.gyp:picture_renderer', |
| 290 ], | 290 ], |
| 291 }, | 291 }, |
| 292 { | 292 { |
| 293 'target_name': 'bench_record', | 293 'target_name': 'bench_record', |
| 294 'type': 'executable', | 294 'type': 'executable', |
| 295 'sources': ['../tools/bench_record.cpp'], | 295 'sources': [ |
| 296 'include_dirs': [ '../src/core/' ], | 296 '../tools/bench_record.cpp', |
| 297 '../tools/LazyDecodeBitmap.cpp', |
| 298 ], |
| 299 'include_dirs': [ |
| 300 '../src/core/', |
| 301 '../src/images', |
| 302 '../src/lazy', |
| 303 ], |
| 297 'dependencies': [ | 304 'dependencies': [ |
| 298 'flags.gyp:flags', | 305 'flags.gyp:flags', |
| 299 'skia_lib.gyp:skia_lib', | 306 'skia_lib.gyp:skia_lib', |
| 300 ], | 307 ], |
| 301 }, | 308 }, |
| 302 { | 309 { |
| 303 'target_name': 'picture_renderer', | 310 'target_name': 'picture_renderer', |
| 304 'type': 'static_library', | 311 'type': 'static_library', |
| 305 'sources': [ | 312 'sources': [ |
| 306 '../tools/LazyDecodeBitmap.cpp', | 313 '../tools/LazyDecodeBitmap.cpp', |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 'type': 'executable', | 553 'type': 'executable', |
| 547 'sources': [ | 554 'sources': [ |
| 548 '../tools/win_lcid.cpp', | 555 '../tools/win_lcid.cpp', |
| 549 ], | 556 ], |
| 550 }, | 557 }, |
| 551 ], | 558 ], |
| 552 }, | 559 }, |
| 553 ], | 560 ], |
| 554 ], | 561 ], |
| 555 } | 562 } |
| OLD | NEW |