| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 'sources': [ | 93 'sources': [ |
| 94 '../tools/render_pictures_main.cpp', | 94 '../tools/render_pictures_main.cpp', |
| 95 ], | 95 ], |
| 96 'include_dirs': [ | 96 'include_dirs': [ |
| 97 '../src/pipe/utils/', | 97 '../src/pipe/utils/', |
| 98 ], | 98 ], |
| 99 'dependencies': [ | 99 'dependencies': [ |
| 100 'skia_base_libs.gyp:skia_base_libs', | 100 'skia_base_libs.gyp:skia_base_libs', |
| 101 'tools.gyp:picture_renderer', | 101 'tools.gyp:picture_renderer', |
| 102 'tools.gyp:picture_utils', | 102 'tools.gyp:picture_utils', |
| 103 'ports.gyp:ports', |
| 103 ], | 104 ], |
| 104 }, | 105 }, |
| 105 { | 106 { |
| 106 'target_name': 'bench_pictures', | 107 'target_name': 'bench_pictures', |
| 107 'type': 'executable', | 108 'type': 'executable', |
| 108 'sources': [ | 109 'sources': [ |
| 109 '../bench/SkBenchLogger.h', | 110 '../bench/SkBenchLogger.h', |
| 110 '../bench/SkBenchLogger.cpp', | 111 '../bench/SkBenchLogger.cpp', |
| 111 '../bench/TimerData.h', | 112 '../bench/TimerData.h', |
| 112 '../bench/TimerData.cpp', | 113 '../bench/TimerData.cpp', |
| 113 '../tools/bench_pictures_main.cpp', | 114 '../tools/bench_pictures_main.cpp', |
| 114 '../tools/PictureBenchmark.cpp', | 115 '../tools/PictureBenchmark.cpp', |
| 115 ], | 116 ], |
| 116 'include_dirs': [ | 117 'include_dirs': [ |
| 117 '../bench', | 118 '../bench', |
| 118 '../src/lazy/', | 119 '../src/lazy/', |
| 119 ], | 120 ], |
| 120 'dependencies': [ | 121 'dependencies': [ |
| 121 'skia_base_libs.gyp:skia_base_libs', | 122 'skia_base_libs.gyp:skia_base_libs', |
| 122 'effects.gyp:effects', | 123 'effects.gyp:effects', |
| 123 'tools.gyp:picture_utils', | 124 'tools.gyp:picture_utils', |
| 124 'tools.gyp:picture_renderer', | 125 'tools.gyp:picture_renderer', |
| 125 'bench.gyp:bench_timer', | 126 'bench.gyp:bench_timer', |
| 127 'ports.gyp:ports', |
| 126 ], | 128 ], |
| 127 }, | 129 }, |
| 128 { | 130 { |
| 129 'target_name': 'picture_renderer', | 131 'target_name': 'picture_renderer', |
| 130 'type': 'static_library', | 132 'type': 'static_library', |
| 131 'sources': [ | 133 'sources': [ |
| 132 '../tools/PictureRenderer.h', | 134 '../tools/PictureRenderer.h', |
| 133 '../tools/PictureRenderer.cpp', | 135 '../tools/PictureRenderer.cpp', |
| 134 '../tools/PictureRenderingFlags.h', | 136 '../tools/PictureRenderingFlags.h', |
| 135 '../tools/PictureRenderingFlags.cpp', | 137 '../tools/PictureRenderingFlags.cpp', |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 ], | 236 ], |
| 235 }, | 237 }, |
| 236 ], | 238 ], |
| 237 } | 239 } |
| 238 | 240 |
| 239 # Local Variables: | 241 # Local Variables: |
| 240 # tab-width:2 | 242 # tab-width:2 |
| 241 # indent-tabs-mode:nil | 243 # indent-tabs-mode:nil |
| 242 # End: | 244 # End: |
| 243 # vim: set expandtab tabstop=2 shiftwidth=2: | 245 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |