| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'target_name': 'sk_tool_utils', | 91 'target_name': 'sk_tool_utils', |
| 92 'type': 'static_library', | 92 'type': 'static_library', |
| 93 'sources': [ | 93 'sources': [ |
| 94 '../tools/sk_tool_utils.cpp', | 94 '../tools/sk_tool_utils.cpp', |
| 95 '../tools/sk_tool_utils_font.cpp', | 95 '../tools/sk_tool_utils_font.cpp', |
| 96 ], | 96 ], |
| 97 'include_dirs': [ | 97 'include_dirs': [ |
| 98 '../src/fonts', | 98 '../src/fonts', |
| 99 ], | 99 ], |
| 100 'dependencies': [ | 100 'dependencies': [ |
| 101 'resources', |
| 101 'flags.gyp:flags', | 102 'flags.gyp:flags', |
| 102 'skia_lib.gyp:skia_lib', | 103 'skia_lib.gyp:skia_lib', |
| 103 ], | 104 ], |
| 104 'direct_dependent_settings': { | 105 'direct_dependent_settings': { |
| 105 'include_dirs': [ '../tools', ], | 106 'include_dirs': [ '../tools', ], |
| 106 }, | 107 }, |
| 107 }, | 108 }, |
| 108 { | 109 { |
| 109 'target_name' : 'timer', | 110 'target_name' : 'timer', |
| 110 'type': 'static_library', | 111 'type': 'static_library', |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 728 'flags.gyp:flags', | 729 'flags.gyp:flags', |
| 729 'skia_lib.gyp:skia_lib', | 730 'skia_lib.gyp:skia_lib', |
| 730 'resources', | 731 'resources', |
| 731 ], | 732 ], |
| 732 }, | 733 }, |
| 733 ], | 734 ], |
| 734 }, | 735 }, |
| 735 ], | 736 ], |
| 736 ], | 737 ], |
| 737 } | 738 } |
| OLD | NEW |