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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 'type': 'executable', | 225 'type': 'executable', |
226 'sources': [ | 226 'sources': [ |
227 '../bench/SkBenchLogger.h', | 227 '../bench/SkBenchLogger.h', |
228 '../bench/SkBenchLogger.cpp', | 228 '../bench/SkBenchLogger.cpp', |
229 '../bench/TimerData.h', | 229 '../bench/TimerData.h', |
230 '../bench/TimerData.cpp', | 230 '../bench/TimerData.cpp', |
231 '../tools/bench_pictures_main.cpp', | 231 '../tools/bench_pictures_main.cpp', |
232 '../tools/PictureBenchmark.cpp', | 232 '../tools/PictureBenchmark.cpp', |
233 ], | 233 ], |
234 'include_dirs': [ | 234 'include_dirs': [ |
| 235 '../src/core/', |
235 '../bench', | 236 '../bench', |
236 '../src/lazy/', | 237 '../src/lazy/', |
237 ], | 238 ], |
238 'dependencies': [ | 239 'dependencies': [ |
239 'skia_lib.gyp:skia_lib', | 240 'skia_lib.gyp:skia_lib', |
240 'tools.gyp:picture_utils', | 241 'tools.gyp:picture_utils', |
241 'tools.gyp:picture_renderer', | 242 'tools.gyp:picture_renderer', |
242 'bench.gyp:bench_timer', | 243 'bench.gyp:bench_timer', |
243 'flags.gyp:flags', | 244 'flags.gyp:flags', |
244 ], | 245 ], |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 }, | 481 }, |
481 ], | 482 ], |
482 ], | 483 ], |
483 } | 484 } |
484 | 485 |
485 # Local Variables: | 486 # Local Variables: |
486 # tab-width:2 | 487 # tab-width:2 |
487 # indent-tabs-mode:nil | 488 # indent-tabs-mode:nil |
488 # End: | 489 # End: |
489 # vim: set expandtab tabstop=2 shiftwidth=2: | 490 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |