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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 'dependencies': [ | 362 'dependencies': [ |
363 'flags.gyp:flags', | 363 'flags.gyp:flags', |
364 'record.gyp:*', | 364 'record.gyp:*', |
365 'skia_lib.gyp:skia_lib', | 365 'skia_lib.gyp:skia_lib', |
366 ], | 366 ], |
367 }, | 367 }, |
368 { | 368 { |
369 'target_name': 'picture_renderer', | 369 'target_name': 'picture_renderer', |
370 'type': 'static_library', | 370 'type': 'static_library', |
371 'sources': [ | 371 'sources': [ |
372 '../tools/image_expectations.h', | |
373 '../tools/image_expectations.cpp', | |
374 '../tools/LazyDecodeBitmap.cpp', | 372 '../tools/LazyDecodeBitmap.cpp', |
375 '../tools/PictureRenderer.h', | 373 '../tools/PictureRenderer.h', |
376 '../tools/PictureRenderer.cpp', | 374 '../tools/PictureRenderer.cpp', |
377 '../tools/PictureRenderingFlags.h', | 375 '../tools/PictureRenderingFlags.h', |
378 '../tools/PictureRenderingFlags.cpp', | 376 '../tools/PictureRenderingFlags.cpp', |
379 '../tools/CopyTilesRenderer.h', | 377 '../tools/CopyTilesRenderer.h', |
380 '../tools/CopyTilesRenderer.cpp', | 378 '../tools/CopyTilesRenderer.cpp', |
381 '../src/pipe/utils/SamplePipeControllers.h', | 379 '../src/pipe/utils/SamplePipeControllers.h', |
382 '../src/pipe/utils/SamplePipeControllers.cpp', | 380 '../src/pipe/utils/SamplePipeControllers.cpp', |
383 ], | 381 ], |
384 'include_dirs': [ | 382 'include_dirs': [ |
385 '../src/core', | 383 '../src/core', |
386 '../src/images', | 384 '../src/images', |
387 '../src/lazy', | 385 '../src/lazy', |
388 '../src/pipe/utils/', | 386 '../src/pipe/utils/', |
389 '../src/utils/', | 387 '../src/utils/', |
390 ], | 388 ], |
391 'direct_dependent_settings': { | 389 'direct_dependent_settings': { |
392 'include_dirs': [ | 390 'include_dirs': [ |
393 # needed for JSON headers used within image_expectations.h | 391 # needed for JSON headers used within PictureRenderer.h |
394 '../third_party/externals/jsoncpp-chromium/overrides/include/', | 392 '../third_party/externals/jsoncpp-chromium/overrides/include/', |
395 '../third_party/externals/jsoncpp/include/', | 393 '../third_party/externals/jsoncpp/include/', |
396 ], | 394 ], |
397 }, | 395 }, |
398 'dependencies': [ | 396 'dependencies': [ |
399 'flags.gyp:flags', | 397 'flags.gyp:flags', |
400 'jsoncpp.gyp:jsoncpp', | 398 'jsoncpp.gyp:jsoncpp', |
401 'skia_lib.gyp:skia_lib', | 399 'skia_lib.gyp:skia_lib', |
402 'tools.gyp:picture_utils', | 400 'tools.gyp:picture_utils', |
403 'utils.gyp:utils', | |
404 ], | 401 ], |
405 'conditions': [ | 402 'conditions': [ |
406 ['skia_gpu == 1', | 403 ['skia_gpu == 1', |
407 { | 404 { |
408 'include_dirs' : [ | 405 'include_dirs' : [ |
409 '../src/gpu', | 406 '../src/gpu', |
410 ], | 407 ], |
411 'dependencies': [ | 408 'dependencies': [ |
412 'gputest.gyp:skgputest', | 409 'gputest.gyp:skgputest', |
413 ], | 410 ], |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
615 'type': 'executable', | 612 'type': 'executable', |
616 'sources': [ | 613 'sources': [ |
617 '../tools/win_lcid.cpp', | 614 '../tools/win_lcid.cpp', |
618 ], | 615 ], |
619 }, | 616 }, |
620 ], | 617 ], |
621 }, | 618 }, |
622 ], | 619 ], |
623 ], | 620 ], |
624 } | 621 } |
OLD | NEW |