| 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 26 matching lines...) Expand all Loading... |
| 37 'conditions': [ | 37 'conditions': [ |
| 38 ['skia_shared_lib', | 38 ['skia_shared_lib', |
| 39 { | 39 { |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 'sklua', # This can only be built if skia is built as a shared lib
rary | 41 'sklua', # This can only be built if skia is built as a shared lib
rary |
| 42 ], | 42 ], |
| 43 }, | 43 }, |
| 44 ], | 44 ], |
| 45 ], | 45 ], |
| 46 }, | 46 }, |
| 47 { | |
| 48 'target_name': 'ref_cnt_is', | |
| 49 'type': 'static_library', | |
| 50 'sources': [ '../tools/RefCntIs.cpp' ], | |
| 51 'direct_dependent_settings': { | |
| 52 'include_dirs': [ '../tools' ], | |
| 53 }, | |
| 54 'dependencies': [ | |
| 55 'skia_lib.gyp:skia_lib', | |
| 56 ], | |
| 57 }, | |
| 58 { # This would go in gm.gyp, but it's also used by skimage below. | 47 { # This would go in gm.gyp, but it's also used by skimage below. |
| 59 'target_name': 'gm_expectations', | 48 'target_name': 'gm_expectations', |
| 60 'type': 'static_library', | 49 'type': 'static_library', |
| 61 'include_dirs' : [ '../src/utils/' ], | 50 'include_dirs' : [ '../src/utils/' ], |
| 62 'sources': [ | 51 'sources': [ |
| 63 '../gm/gm_expectations.cpp', | 52 '../gm/gm_expectations.cpp', |
| 64 ], | 53 ], |
| 65 'dependencies': [ | 54 'dependencies': [ |
| 66 'jsoncpp.gyp:jsoncpp', | 55 'jsoncpp.gyp:jsoncpp', |
| 67 'sk_tool_utils', | 56 'sk_tool_utils', |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 'type': 'executable', | 713 'type': 'executable', |
| 725 'sources': [ | 714 'sources': [ |
| 726 '../tools/win_lcid.cpp', | 715 '../tools/win_lcid.cpp', |
| 727 ], | 716 ], |
| 728 }, | 717 }, |
| 729 ], | 718 ], |
| 730 }, | 719 }, |
| 731 ], | 720 ], |
| 732 ], | 721 ], |
| 733 } | 722 } |
| OLD | NEW |