| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 'flags.gyp:flags', | 279 'flags.gyp:flags', |
| 280 'skia_lib.gyp:skia_lib', | 280 'skia_lib.gyp:skia_lib', |
| 281 'tools.gyp:picture_renderer', | 281 'tools.gyp:picture_renderer', |
| 282 'tools.gyp:picture_utils', | 282 'tools.gyp:picture_utils', |
| 283 ], | 283 ], |
| 284 }, | 284 }, |
| 285 { | 285 { |
| 286 'target_name': 'bench_pictures', | 286 'target_name': 'bench_pictures', |
| 287 'type': 'executable', | 287 'type': 'executable', |
| 288 'sources': [ | 288 'sources': [ |
| 289 '../bench/BenchLogger.cpp', |
| 290 '../bench/BenchLogger.h', |
| 289 '../bench/ResultsWriter.cpp', | 291 '../bench/ResultsWriter.cpp', |
| 290 '../tools/PictureBenchmark.cpp', | 292 '../tools/PictureBenchmark.cpp', |
| 291 '../tools/PictureResultsWriter.h', | 293 '../tools/PictureResultsWriter.h', |
| 292 '../bench/SkBenchLogger.h', | |
| 293 '../bench/SkBenchLogger.cpp', | |
| 294 '../tools/bench_pictures_main.cpp', | 294 '../tools/bench_pictures_main.cpp', |
| 295 ], | 295 ], |
| 296 'include_dirs': [ | 296 'include_dirs': [ |
| 297 '../src/core/', | 297 '../src/core/', |
| 298 '../bench', | 298 '../bench', |
| 299 '../src/lazy/', | 299 '../src/lazy/', |
| 300 ], | 300 ], |
| 301 'dependencies': [ | 301 'dependencies': [ |
| 302 'bench.gyp:bench_timer', | 302 'bench.gyp:bench_timer', |
| 303 'crash_handler.gyp:CrashHandler', | 303 'crash_handler.gyp:CrashHandler', |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 619 'type': 'executable', | 619 'type': 'executable', |
| 620 'sources': [ | 620 'sources': [ |
| 621 '../tools/win_lcid.cpp', | 621 '../tools/win_lcid.cpp', |
| 622 ], | 622 ], |
| 623 }, | 623 }, |
| 624 ], | 624 ], |
| 625 }, | 625 }, |
| 626 ], | 626 ], |
| 627 ], | 627 ], |
| 628 } | 628 } |
| OLD | NEW |