| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 '../tools/skdiff_utils.h', | 153 '../tools/skdiff_utils.h', |
| 154 ], | 154 ], |
| 155 'dependencies': [ | 155 'dependencies': [ |
| 156 'skia_lib.gyp:skia_lib', | 156 'skia_lib.gyp:skia_lib', |
| 157 ], | 157 ], |
| 158 }, | 158 }, |
| 159 { | 159 { |
| 160 'target_name': 'skpdiff', | 160 'target_name': 'skpdiff', |
| 161 'type': 'executable', | 161 'type': 'executable', |
| 162 'sources': [ | 162 'sources': [ |
| 163 '../src/core/SkTaskGroup.cpp', |
| 163 '../tools/skpdiff/skpdiff_main.cpp', | 164 '../tools/skpdiff/skpdiff_main.cpp', |
| 164 '../tools/skpdiff/SkDiffContext.cpp', | 165 '../tools/skpdiff/SkDiffContext.cpp', |
| 165 '../tools/skpdiff/SkImageDiffer.cpp', | 166 '../tools/skpdiff/SkImageDiffer.cpp', |
| 166 '../tools/skpdiff/SkPMetric.cpp', | 167 '../tools/skpdiff/SkPMetric.cpp', |
| 167 '../tools/skpdiff/skpdiff_util.cpp', | 168 '../tools/skpdiff/skpdiff_util.cpp', |
| 168 ], | 169 ], |
| 169 'include_dirs': [ | 170 'include_dirs': [ |
| 170 '../src/core/', # needed for SkTLList.h | 171 '../src/core/', # needed for SkTLList.h |
| 171 '../tools/', # needed for picture_utils::replace_char | 172 '../tools/', # needed for picture_utils::replace_char |
| 172 ], | 173 ], |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 'flags.gyp:flags', | 707 'flags.gyp:flags', |
| 707 'skia_lib.gyp:skia_lib', | 708 'skia_lib.gyp:skia_lib', |
| 708 'resources', | 709 'resources', |
| 709 ], | 710 ], |
| 710 }, | 711 }, |
| 711 ], | 712 ], |
| 712 }, | 713 }, |
| 713 ], | 714 ], |
| 714 ], | 715 ], |
| 715 } | 716 } |
| OLD | NEW |