| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 'tools.gyp:picture_renderer', | 380 'tools.gyp:picture_renderer', |
| 381 'tools.gyp:picture_utils', | 381 'tools.gyp:picture_utils', |
| 382 ], | 382 ], |
| 383 }, | 383 }, |
| 384 { | 384 { |
| 385 'target_name': 'bench_pictures', | 385 'target_name': 'bench_pictures', |
| 386 'type': 'executable', | 386 'type': 'executable', |
| 387 'sources': [ | 387 'sources': [ |
| 388 '../bench/BenchLogger.cpp', | 388 '../bench/BenchLogger.cpp', |
| 389 '../bench/BenchLogger.h', | 389 '../bench/BenchLogger.h', |
| 390 '../bench/ResultsWriter.cpp', | |
| 391 '../tools/PictureBenchmark.cpp', | 390 '../tools/PictureBenchmark.cpp', |
| 392 '../tools/PictureResultsWriter.h', | 391 '../tools/PictureResultsWriter.h', |
| 393 '../tools/bench_pictures_main.cpp', | 392 '../tools/bench_pictures_main.cpp', |
| 394 ], | 393 ], |
| 395 'include_dirs': [ | 394 'include_dirs': [ |
| 396 '../src/core/', | 395 '../src/core/', |
| 397 '../bench', | 396 '../bench', |
| 398 '../src/lazy/', | 397 '../src/lazy/', |
| 399 ], | 398 ], |
| 400 'dependencies': [ | 399 'dependencies': [ |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 'flags.gyp:flags', | 742 'flags.gyp:flags', |
| 744 'skia_lib.gyp:skia_lib', | 743 'skia_lib.gyp:skia_lib', |
| 745 'resources', | 744 'resources', |
| 746 ], | 745 ], |
| 747 }, | 746 }, |
| 748 ], | 747 ], |
| 749 }, | 748 }, |
| 750 ], | 749 ], |
| 751 ], | 750 ], |
| 752 } | 751 } |
| OLD | NEW |