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

Side by Side Diff: gyp/tools.gyp

Issue 103033002: Big Cleanup: SkBitmapFactory, SkLazyPixelRef, SkImageCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase one last time Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « gyp/tests.gyp ('k') | include/core/SkImageDecoder.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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 'lua.gyp:lua', 204 'lua.gyp:lua',
205 ], 205 ],
206 }, 206 },
207 { 207 {
208 'target_name': 'render_pictures', 208 'target_name': 'render_pictures',
209 'type': 'executable', 209 'type': 'executable',
210 'sources': [ 210 'sources': [
211 '../tools/render_pictures_main.cpp', 211 '../tools/render_pictures_main.cpp',
212 ], 212 ],
213 'include_dirs': [ 213 'include_dirs': [
214 '../src/core',
215 '../src/images',
216 '../src/lazy',
214 '../src/pipe/utils/', 217 '../src/pipe/utils/',
215 ], 218 ],
216 'dependencies': [ 219 'dependencies': [
217 'skia_lib.gyp:skia_lib', 220 'skia_lib.gyp:skia_lib',
218 'tools.gyp:picture_renderer', 221 'tools.gyp:picture_renderer',
219 'tools.gyp:picture_utils', 222 'tools.gyp:picture_utils',
220 'flags.gyp:flags', 223 'flags.gyp:flags',
221 ], 224 ],
222 }, 225 },
223 { 226 {
224 'target_name': 'bench_pictures', 227 'target_name': 'bench_pictures',
225 'type': 'executable', 228 'type': 'executable',
226 'sources': [ 229 'sources': [
227 '../bench/SkBenchLogger.h', 230 '../bench/SkBenchLogger.h',
228 '../bench/SkBenchLogger.cpp', 231 '../bench/SkBenchLogger.cpp',
229 '../bench/TimerData.h', 232 '../bench/TimerData.h',
230 '../bench/TimerData.cpp', 233 '../bench/TimerData.cpp',
231 '../tools/bench_pictures_main.cpp', 234 '../tools/bench_pictures_main.cpp',
232 '../tools/PictureBenchmark.cpp', 235 '../tools/PictureBenchmark.cpp',
233 ], 236 ],
234 'include_dirs': [ 237 'include_dirs': [
238 '../src/core/',
235 '../bench', 239 '../bench',
236 '../src/lazy/', 240 '../src/lazy/',
237 ], 241 ],
238 'dependencies': [ 242 'dependencies': [
239 'skia_lib.gyp:skia_lib', 243 'skia_lib.gyp:skia_lib',
240 'tools.gyp:picture_utils', 244 'tools.gyp:picture_utils',
241 'tools.gyp:picture_renderer', 245 'tools.gyp:picture_renderer',
242 'bench.gyp:bench_timer', 246 'bench.gyp:bench_timer',
243 'flags.gyp:flags', 247 'flags.gyp:flags',
244 ], 248 ],
245 }, 249 },
246 { 250 {
247 'target_name': 'picture_renderer', 251 'target_name': 'picture_renderer',
248 'type': 'static_library', 252 'type': 'static_library',
249 'sources': [ 253 'sources': [
250 '../tools/LazyDecodeBitmap.cpp', 254 '../tools/LazyDecodeBitmap.cpp',
251 '../tools/PictureRenderer.h', 255 '../tools/PictureRenderer.h',
252 '../tools/PictureRenderer.cpp', 256 '../tools/PictureRenderer.cpp',
253 '../tools/PictureRenderingFlags.h', 257 '../tools/PictureRenderingFlags.h',
254 '../tools/PictureRenderingFlags.cpp', 258 '../tools/PictureRenderingFlags.cpp',
255 '../tools/CopyTilesRenderer.h', 259 '../tools/CopyTilesRenderer.h',
256 '../tools/CopyTilesRenderer.cpp', 260 '../tools/CopyTilesRenderer.cpp',
257 '../src/pipe/utils/SamplePipeControllers.h', 261 '../src/pipe/utils/SamplePipeControllers.h',
258 '../src/pipe/utils/SamplePipeControllers.cpp', 262 '../src/pipe/utils/SamplePipeControllers.cpp',
259 ], 263 ],
260 'include_dirs': [ 264 'include_dirs': [
261 '../src/core/', 265 '../src/core',
266 '../src/images',
267 '../src/lazy',
262 '../src/pipe/utils/', 268 '../src/pipe/utils/',
263 '../src/utils/', 269 '../src/utils/',
264 ], 270 ],
265 'dependencies': [ 271 'dependencies': [
266 'skia_lib.gyp:skia_lib', 272 'skia_lib.gyp:skia_lib',
267 'tools.gyp:picture_utils', 273 'tools.gyp:picture_utils',
268 'flags.gyp:flags', 274 'flags.gyp:flags',
269 ], 275 ],
270 'conditions': [ 276 'conditions': [
271 ['skia_gpu == 1', 277 ['skia_gpu == 1',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'type': 'executable', 480 'type': 'executable',
475 'sources': [ 481 'sources': [
476 '../tools/win_lcid.cpp', 482 '../tools/win_lcid.cpp',
477 ], 483 ],
478 }, 484 },
479 ], 485 ],
480 }, 486 },
481 ], 487 ],
482 ], 488 ],
483 } 489 }
OLDNEW
« no previous file with comments | « gyp/tests.gyp ('k') | include/core/SkImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698