Chromium Code Reviews| 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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 393 ], | 393 ], |
| 394 'dependencies': [ | 394 'dependencies': [ |
| 395 'timer', | 395 'timer', |
| 396 'crash_handler', | 396 'crash_handler', |
| 397 'flags.gyp:flags', | 397 'flags.gyp:flags', |
| 398 'jsoncpp.gyp:jsoncpp', | 398 'jsoncpp.gyp:jsoncpp', |
| 399 'skia_lib.gyp:skia_lib', | 399 'skia_lib.gyp:skia_lib', |
| 400 'tools.gyp:picture_renderer', | 400 'tools.gyp:picture_renderer', |
| 401 'tools.gyp:picture_utils', | 401 'tools.gyp:picture_utils', |
| 402 ], | 402 ], |
| 403 'conditions': [ | |
| 404 ['skia_android_framework == 1', { | |
| 405 'libraries': [ '-lskia' ], | |
|
scroggo
2014/07/16 20:51:01
mtklein pointed out live that we should abstract t
| |
| 406 }], | |
| 407 ], | |
| 403 }, | 408 }, |
| 404 { | 409 { |
| 405 'target_name': 'bench_record', | 410 'target_name': 'bench_record', |
| 406 'type': 'executable', | 411 'type': 'executable', |
| 407 'sources': [ | 412 'sources': [ |
| 408 '../tools/bench_record.cpp', | 413 '../tools/bench_record.cpp', |
| 409 '../tools/LazyDecodeBitmap.cpp', | 414 '../tools/LazyDecodeBitmap.cpp', |
| 410 ], | 415 ], |
| 411 'include_dirs': [ | 416 'include_dirs': [ |
| 412 '../src/core/', | 417 '../src/core/', |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 713 'type': 'executable', | 718 'type': 'executable', |
| 714 'sources': [ | 719 'sources': [ |
| 715 '../tools/win_lcid.cpp', | 720 '../tools/win_lcid.cpp', |
| 716 ], | 721 ], |
| 717 }, | 722 }, |
| 718 ], | 723 ], |
| 719 }, | 724 }, |
| 720 ], | 725 ], |
| 721 ], | 726 ], |
| 722 } | 727 } |
| OLD | NEW |