| 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 'target_name': 'bench_record', | 293 'target_name': 'bench_record', |
| 294 'type': 'executable', | 294 'type': 'executable', |
| 295 'sources': [ | 295 'sources': [ |
| 296 '../tools/bench_record.cpp', | 296 '../tools/bench_record.cpp', |
| 297 '../tools/LazyDecodeBitmap.cpp', | 297 '../tools/LazyDecodeBitmap.cpp', |
| 298 ], | 298 ], |
| 299 'include_dirs': [ | 299 'include_dirs': [ |
| 300 '../src/core/', | 300 '../src/core/', |
| 301 '../src/images', | 301 '../src/images', |
| 302 '../src/lazy', | 302 '../src/lazy', |
| 303 '../src/record', | |
| 304 ], | 303 ], |
| 305 'dependencies': [ | 304 'dependencies': [ |
| 306 'flags.gyp:flags', | 305 'flags.gyp:flags', |
| 307 'skia_lib.gyp:skia_lib', | 306 'skia_lib.gyp:skia_lib', |
| 308 'record.gyp:*', | 307 'record.gyp:*', |
| 309 ], | 308 ], |
| 310 }, | 309 }, |
| 311 { | 310 { |
| 312 'target_name': 'picture_renderer', | 311 'target_name': 'picture_renderer', |
| 313 'type': 'static_library', | 312 'type': 'static_library', |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 555 'type': 'executable', | 554 'type': 'executable', |
| 556 'sources': [ | 555 'sources': [ |
| 557 '../tools/win_lcid.cpp', | 556 '../tools/win_lcid.cpp', |
| 558 ], | 557 ], |
| 559 }, | 558 }, |
| 560 ], | 559 ], |
| 561 }, | 560 }, |
| 562 ], | 561 ], |
| 563 ], | 562 ], |
| 564 } | 563 } |
| OLD | NEW |