| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 'dependencies': [ | 82 'dependencies': [ |
| 83 'resources', | 83 'resources', |
| 84 'flags.gyp:flags', | 84 'flags.gyp:flags', |
| 85 'skia_lib.gyp:skia_lib', | 85 'skia_lib.gyp:skia_lib', |
| 86 ], | 86 ], |
| 87 'direct_dependent_settings': { | 87 'direct_dependent_settings': { |
| 88 'include_dirs': [ '../tools', ], | 88 'include_dirs': [ '../tools', ], |
| 89 }, | 89 }, |
| 90 }, | 90 }, |
| 91 { | 91 { |
| 92 'target_name': 'checkerboard', | |
| 93 'type': 'static_library', | |
| 94 'sources': [ '../tools/Checkerboard.cpp', ], | |
| 95 'dependencies': [ 'skia_lib.gyp:skia_lib', ], | |
| 96 'direct_dependent_settings': { 'include_dirs': [ '../tools', ], }, | |
| 97 }, | |
| 98 { | |
| 99 'target_name' : 'timer', | 92 'target_name' : 'timer', |
| 100 'type': 'static_library', | 93 'type': 'static_library', |
| 101 'sources': [ | 94 'sources': [ |
| 102 '../tools/timer/Timer.cpp', | 95 '../tools/timer/Timer.cpp', |
| 103 '../tools/timer/TimerData.cpp', | 96 '../tools/timer/TimerData.cpp', |
| 104 ], | 97 ], |
| 105 'include_dirs': [ | 98 'include_dirs': [ |
| 106 '../src/core', | 99 '../src/core', |
| 107 '../src/gpu', | 100 '../src/gpu', |
| 108 ], | 101 ], |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 'flags.gyp:flags', | 742 'flags.gyp:flags', |
| 750 'skia_lib.gyp:skia_lib', | 743 'skia_lib.gyp:skia_lib', |
| 751 'resources', | 744 'resources', |
| 752 ], | 745 ], |
| 753 }, | 746 }, |
| 754 ], | 747 ], |
| 755 }, | 748 }, |
| 756 ], | 749 ], |
| 757 ], | 750 ], |
| 758 } | 751 } |
| OLD | NEW |