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

Side by Side Diff: gyp/tools.gyp

Issue 261313004: add --readJsonSummaryPath to render_pictures (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: split out SkDataUtils.[h,cpp] Created 6 years, 7 months 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
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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 'bench.gyp:bench_timer', 342 'bench.gyp:bench_timer',
343 'flags.gyp:flags', 343 'flags.gyp:flags',
344 'skia_lib.gyp:skia_lib', 344 'skia_lib.gyp:skia_lib',
345 'record.gyp:*', 345 'record.gyp:*',
346 ], 346 ],
347 }, 347 },
348 { 348 {
349 'target_name': 'picture_renderer', 349 'target_name': 'picture_renderer',
350 'type': 'static_library', 350 'type': 'static_library',
351 'sources': [ 351 'sources': [
352 '../tools/image_expectations.h',
353 '../tools/image_expectations.cpp',
352 '../tools/LazyDecodeBitmap.cpp', 354 '../tools/LazyDecodeBitmap.cpp',
353 '../tools/PictureRenderer.h', 355 '../tools/PictureRenderer.h',
354 '../tools/PictureRenderer.cpp', 356 '../tools/PictureRenderer.cpp',
355 '../tools/PictureRenderingFlags.h', 357 '../tools/PictureRenderingFlags.h',
356 '../tools/PictureRenderingFlags.cpp', 358 '../tools/PictureRenderingFlags.cpp',
357 '../tools/CopyTilesRenderer.h', 359 '../tools/CopyTilesRenderer.h',
358 '../tools/CopyTilesRenderer.cpp', 360 '../tools/CopyTilesRenderer.cpp',
359 '../src/pipe/utils/SamplePipeControllers.h', 361 '../src/pipe/utils/SamplePipeControllers.h',
360 '../src/pipe/utils/SamplePipeControllers.cpp', 362 '../src/pipe/utils/SamplePipeControllers.cpp',
361 ], 363 ],
362 'include_dirs': [ 364 'include_dirs': [
363 '../src/core', 365 '../src/core',
364 '../src/images', 366 '../src/images',
365 '../src/lazy', 367 '../src/lazy',
366 '../src/pipe/utils/', 368 '../src/pipe/utils/',
367 '../src/utils/', 369 '../src/utils/',
368 ], 370 ],
369 'direct_dependent_settings': { 371 'direct_dependent_settings': {
370 'include_dirs': [ 372 'include_dirs': [
371 # needed for JSON headers used within PictureRenderer.h 373 # needed for JSON headers used within image_expectations.h
372 '../third_party/externals/jsoncpp-chromium/overrides/include/', 374 '../third_party/externals/jsoncpp-chromium/overrides/include/',
373 '../third_party/externals/jsoncpp/include/', 375 '../third_party/externals/jsoncpp/include/',
374 ], 376 ],
375 }, 377 },
376 'dependencies': [ 378 'dependencies': [
377 'flags.gyp:flags', 379 'flags.gyp:flags',
378 'jsoncpp.gyp:jsoncpp', 380 'jsoncpp.gyp:jsoncpp',
379 'skia_lib.gyp:skia_lib', 381 'skia_lib.gyp:skia_lib',
380 'tools.gyp:picture_utils', 382 'tools.gyp:picture_utils',
383 'utils.gyp:utils',
381 ], 384 ],
382 'conditions': [ 385 'conditions': [
383 ['skia_gpu == 1', 386 ['skia_gpu == 1',
384 { 387 {
385 'include_dirs' : [ 388 'include_dirs' : [
386 '../src/gpu', 389 '../src/gpu',
387 ], 390 ],
388 'dependencies': [ 391 'dependencies': [
389 'gputest.gyp:skgputest', 392 'gputest.gyp:skgputest',
390 ], 393 ],
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 'type': 'executable', 595 'type': 'executable',
593 'sources': [ 596 'sources': [
594 '../tools/win_lcid.cpp', 597 '../tools/win_lcid.cpp',
595 ], 598 ],
596 }, 599 },
597 ], 600 ],
598 }, 601 },
599 ], 602 ],
600 ], 603 ],
601 } 604 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698