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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 'type': 'executable', | 270 'type': 'executable', |
271 'sources': [ | 271 'sources': [ |
272 '../tools/skimage_main.cpp', | 272 '../tools/skimage_main.cpp', |
273 ], | 273 ], |
274 'include_dirs': [ | 274 'include_dirs': [ |
275 # For SkBitmapHasher.h | 275 # For SkBitmapHasher.h |
276 '../src/utils/', | 276 '../src/utils/', |
277 '../tools/', | 277 '../tools/', |
278 ], | 278 ], |
279 'dependencies': [ | 279 'dependencies': [ |
| 280 'flags.gyp:flags', |
280 'gm_expectations', | 281 'gm_expectations', |
281 'flags.gyp:flags', | |
282 'jsoncpp.gyp:jsoncpp', | 282 'jsoncpp.gyp:jsoncpp', |
283 'skia_lib.gyp:skia_lib', | 283 'skia_lib.gyp:skia_lib', |
284 ], | 284 ], |
285 }, | 285 }, |
286 { | 286 { |
287 'target_name': 'skpinfo', | 287 'target_name': 'skpinfo', |
288 'type': 'executable', | 288 'type': 'executable', |
289 'sources': [ | 289 'sources': [ |
290 '../tools/skpinfo.cpp', | 290 '../tools/skpinfo.cpp', |
291 ], | 291 ], |
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 'flags.gyp:flags', | 706 'flags.gyp:flags', |
707 'skia_lib.gyp:skia_lib', | 707 'skia_lib.gyp:skia_lib', |
708 'resources', | 708 'resources', |
709 ], | 709 ], |
710 }, | 710 }, |
711 ], | 711 ], |
712 }, | 712 }, |
713 ], | 713 ], |
714 ], | 714 ], |
715 } | 715 } |
OLD | NEW |