| 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 # Building on other platforms not tested yet. | 6 # Building on other platforms not tested yet. |
| 7 # | 7 # |
| 8 { | 8 { |
| 9 'includes': [ | 9 'includes': [ |
| 10 'apptype_console.gypi', | 10 'apptype_console.gypi', |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'sources': [ | 106 'sources': [ |
| 107 '../bench/SkBenchLogger.h', | 107 '../bench/SkBenchLogger.h', |
| 108 '../bench/SkBenchLogger.cpp', | 108 '../bench/SkBenchLogger.cpp', |
| 109 '../bench/TimerData.h', | 109 '../bench/TimerData.h', |
| 110 '../bench/TimerData.cpp', | 110 '../bench/TimerData.cpp', |
| 111 '../tools/bench_pictures_main.cpp', | 111 '../tools/bench_pictures_main.cpp', |
| 112 '../tools/PictureBenchmark.cpp', | 112 '../tools/PictureBenchmark.cpp', |
| 113 ], | 113 ], |
| 114 'include_dirs': [ | 114 'include_dirs': [ |
| 115 '../bench', | 115 '../bench', |
| 116 '../src/lazy/', |
| 116 ], | 117 ], |
| 117 'dependencies': [ | 118 'dependencies': [ |
| 118 'skia_base_libs.gyp:skia_base_libs', | 119 'skia_base_libs.gyp:skia_base_libs', |
| 119 'effects.gyp:effects', | 120 'effects.gyp:effects', |
| 120 'tools.gyp:picture_utils', | 121 'tools.gyp:picture_utils', |
| 121 'tools.gyp:picture_renderer', | 122 'tools.gyp:picture_renderer', |
| 122 'bench.gyp:bench_timer', | 123 'bench.gyp:bench_timer', |
| 123 ], | 124 ], |
| 124 }, | 125 }, |
| 125 { | 126 { |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 ], | 232 ], |
| 232 }, | 233 }, |
| 233 ], | 234 ], |
| 234 } | 235 } |
| 235 | 236 |
| 236 # Local Variables: | 237 # Local Variables: |
| 237 # tab-width:2 | 238 # tab-width:2 |
| 238 # indent-tabs-mode:nil | 239 # indent-tabs-mode:nil |
| 239 # End: | 240 # End: |
| 240 # vim: set expandtab tabstop=2 shiftwidth=2: | 241 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |