| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 'dependencies': [ | 99 'dependencies': [ |
| 100 'resources', | 100 'resources', |
| 101 'flags.gyp:flags', | 101 'flags.gyp:flags', |
| 102 'skia_lib.gyp:skia_lib', | 102 'skia_lib.gyp:skia_lib', |
| 103 ], | 103 ], |
| 104 'direct_dependent_settings': { | 104 'direct_dependent_settings': { |
| 105 'include_dirs': [ '../tools', ], | 105 'include_dirs': [ '../tools', ], |
| 106 }, | 106 }, |
| 107 }, | 107 }, |
| 108 { | 108 { |
| 109 'target_name': 'checkerboard', |
| 110 'type': 'static_library', |
| 111 'sources': [ '../tools/Checkerboard.cpp', ], |
| 112 'dependencies': [ 'skia_lib.gyp:skia_lib', ], |
| 113 'direct_dependent_settings': { 'include_dirs': [ '../tools', ], }, |
| 114 }, |
| 115 { |
| 109 'target_name' : 'timer', | 116 'target_name' : 'timer', |
| 110 'type': 'static_library', | 117 'type': 'static_library', |
| 111 'sources': [ | 118 'sources': [ |
| 112 '../tools/timer/Timer.cpp', | 119 '../tools/timer/Timer.cpp', |
| 113 '../tools/timer/TimerData.cpp', | 120 '../tools/timer/TimerData.cpp', |
| 114 ], | 121 ], |
| 115 'include_dirs': [ | 122 'include_dirs': [ |
| 116 '../src/core', | 123 '../src/core', |
| 117 '../src/gpu', | 124 '../src/gpu', |
| 118 ], | 125 ], |
| (...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 'flags.gyp:flags', | 779 'flags.gyp:flags', |
| 773 'skia_lib.gyp:skia_lib', | 780 'skia_lib.gyp:skia_lib', |
| 774 'resources', | 781 'resources', |
| 775 ], | 782 ], |
| 776 }, | 783 }, |
| 777 ], | 784 ], |
| 778 }, | 785 }, |
| 779 ], | 786 ], |
| 780 ], | 787 ], |
| 781 } | 788 } |
| OLD | NEW |