Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: gyp/tools.gyp

Issue 684923002: MultiPictureDraw is taskgroup aware. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: actually call Reset() to free the data in each data Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/pathops_unittest.gyp ('k') | include/core/SkMultiPictureDraw.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 }, 158 },
159 { 159 {
160 'target_name': 'skpdiff', 160 'target_name': 'skpdiff',
161 'type': 'executable', 161 'type': 'executable',
162 'sources': [ 162 'sources': [
163 '../tools/skpdiff/skpdiff_main.cpp', 163 '../tools/skpdiff/skpdiff_main.cpp',
164 '../tools/skpdiff/SkDiffContext.cpp', 164 '../tools/skpdiff/SkDiffContext.cpp',
165 '../tools/skpdiff/SkImageDiffer.cpp', 165 '../tools/skpdiff/SkImageDiffer.cpp',
166 '../tools/skpdiff/SkPMetric.cpp', 166 '../tools/skpdiff/SkPMetric.cpp',
167 '../tools/skpdiff/skpdiff_util.cpp', 167 '../tools/skpdiff/skpdiff_util.cpp',
168 '../src/utils/SkTaskGroup.cpp',
169 ], 168 ],
170 'include_dirs': [ 169 'include_dirs': [
171 '../src/core/', # needed for SkTLList.h 170 '../src/core/', # needed for SkTLList.h
172 '../tools/', # needed for picture_utils::replace_char 171 '../tools/', # needed for picture_utils::replace_char
173 ], 172 ],
174 'dependencies': [ 173 'dependencies': [
175 'flags.gyp:flags', 174 'flags.gyp:flags',
176 'skia_lib.gyp:skia_lib', 175 'skia_lib.gyp:skia_lib',
177 'tools.gyp:picture_utils', 176 'tools.gyp:picture_utils',
178 ], 177 ],
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
707 'flags.gyp:flags', 706 'flags.gyp:flags',
708 'skia_lib.gyp:skia_lib', 707 'skia_lib.gyp:skia_lib',
709 'resources', 708 'resources',
710 ], 709 ],
711 }, 710 },
712 ], 711 ],
713 }, 712 },
714 ], 713 ],
715 ], 714 ],
716 } 715 }
OLDNEW
« no previous file with comments | « gyp/pathops_unittest.gyp ('k') | include/core/SkMultiPictureDraw.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698