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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 }, | 160 }, |
161 { | 161 { |
162 'target_name': 'skpdiff', | 162 'target_name': 'skpdiff', |
163 'type': 'executable', | 163 'type': 'executable', |
164 'sources': [ | 164 'sources': [ |
165 '../tools/skpdiff/skpdiff_main.cpp', | 165 '../tools/skpdiff/skpdiff_main.cpp', |
166 '../tools/skpdiff/SkDiffContext.cpp', | 166 '../tools/skpdiff/SkDiffContext.cpp', |
167 '../tools/skpdiff/SkImageDiffer.cpp', | 167 '../tools/skpdiff/SkImageDiffer.cpp', |
168 '../tools/skpdiff/SkPMetric.cpp', | 168 '../tools/skpdiff/SkPMetric.cpp', |
169 '../tools/skpdiff/skpdiff_util.cpp', | 169 '../tools/skpdiff/skpdiff_util.cpp', |
| 170 '../src/utils/SkTaskGroup.cpp', |
170 ], | 171 ], |
171 'include_dirs': [ | 172 'include_dirs': [ |
172 '../src/core/', # needed for SkTLList.h | 173 '../src/core/', # needed for SkTLList.h |
173 '../tools/', # needed for picture_utils::replace_char | 174 '../tools/', # needed for picture_utils::replace_char |
174 ], | 175 ], |
175 'dependencies': [ | 176 'dependencies': [ |
176 'flags.gyp:flags', | 177 'flags.gyp:flags', |
177 'skia_lib.gyp:skia_lib', | 178 'skia_lib.gyp:skia_lib', |
178 'tools.gyp:picture_utils', | 179 'tools.gyp:picture_utils', |
179 ], | 180 ], |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 'flags.gyp:flags', | 743 'flags.gyp:flags', |
743 'skia_lib.gyp:skia_lib', | 744 'skia_lib.gyp:skia_lib', |
744 'resources', | 745 'resources', |
745 ], | 746 ], |
746 }, | 747 }, |
747 ], | 748 ], |
748 }, | 749 }, |
749 ], | 750 ], |
750 ], | 751 ], |
751 } | 752 } |
OLD | NEW |