| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 'flags.gyp:flags', | 71 'flags.gyp:flags', |
| 72 'images.gyp:images', | 72 'images.gyp:images', |
| 73 ], | 73 ], |
| 74 }, | 74 }, |
| 75 { | 75 { |
| 76 'target_name': 'skimage', | 76 'target_name': 'skimage', |
| 77 'type': 'executable', | 77 'type': 'executable', |
| 78 'sources': [ | 78 'sources': [ |
| 79 '../tools/skimage_main.cpp', | 79 '../tools/skimage_main.cpp', |
| 80 ], | 80 ], |
| 81 'include_dirs': [ |
| 82 # For SkBitmapHasher.h |
| 83 '../src/utils/', |
| 84 ], |
| 81 'dependencies': [ | 85 'dependencies': [ |
| 82 'skia_base_libs.gyp:skia_base_libs', | 86 'skia_base_libs.gyp:skia_base_libs', |
| 83 'effects.gyp:effects', | 87 'effects.gyp:effects', |
| 88 'flags.gyp:flags', |
| 89 'gm.gyp:gm_expectations', |
| 84 'images.gyp:images', | 90 'images.gyp:images', |
| 85 'flags.gyp:flags', | 91 'jsoncpp.gyp:jsoncpp', |
| 92 'utils.gyp:utils', |
| 86 ], | 93 ], |
| 87 }, | 94 }, |
| 88 { | 95 { |
| 89 'target_name': 'render_pictures', | 96 'target_name': 'render_pictures', |
| 90 'type': 'executable', | 97 'type': 'executable', |
| 91 'sources': [ | 98 'sources': [ |
| 92 '../tools/render_pictures_main.cpp', | 99 '../tools/render_pictures_main.cpp', |
| 93 ], | 100 ], |
| 94 'include_dirs': [ | 101 'include_dirs': [ |
| 95 '../src/pipe/utils/', | 102 '../src/pipe/utils/', |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 }, | 309 }, |
| 303 ], | 310 ], |
| 304 ], | 311 ], |
| 305 } | 312 } |
| 306 | 313 |
| 307 # Local Variables: | 314 # Local Variables: |
| 308 # tab-width:2 | 315 # tab-width:2 |
| 309 # indent-tabs-mode:nil | 316 # indent-tabs-mode:nil |
| 310 # End: | 317 # End: |
| 311 # vim: set expandtab tabstop=2 shiftwidth=2: | 318 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |