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