| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 1 | # GYP file to build various tools. |
| 2 | # |
| 3 | # To build on Linux: |
| 4 | # ./gyp_skia tools.gyp && make tools |
| 5 | # |
| 6 | # Building on other platforms not tested yet. |
| 7 | # |
| 8 | { |
| 9 | 'includes': [ |
| 10 | 'apptype_console.gypi', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 11 | ], |
| 12 | 'targets': [ |
| 13 | { |
| 14 | # Build all executable targets defined below. |
| 15 | 'target_name': 'tools', |
| 16 | 'type': 'none', |
| 17 | 'dependencies': [ |
| 18 | 'skdiff', |
| 19 | 'skhello', |
| 20 | 'skimage', |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 21 | 'render_pictures', |
| reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 22 | 'bench_pictures', |
| reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 23 | 'pinspect', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 24 | ], |
| 25 | }, |
| 26 | { |
| 27 | 'target_name': 'skdiff', |
| 28 | 'type': 'executable', |
| 29 | 'sources': [ |
| 30 | '../tools/skdiff_main.cpp', |
| 31 | ], |
| 32 | 'dependencies': [ |
| 33 | 'core.gyp:core', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 34 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 35 | 'images.gyp:images', |
| caryclark@google.com | afcb55c | 2011-12-14 17:12:04 +0000 | [diff] [blame] | 36 | 'ports.gyp:ports', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 37 | 'utils.gyp:utils', |
| 38 | ], |
| 39 | }, |
| 40 | { |
| 41 | 'target_name': 'skhello', |
| 42 | 'type': 'executable', |
| 43 | 'sources': [ |
| 44 | '../tools/skhello.cpp', |
| 45 | ], |
| 46 | 'dependencies': [ |
| 47 | 'core.gyp:core', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 48 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 49 | 'images.gyp:images', |
| caryclark@google.com | afcb55c | 2011-12-14 17:12:04 +0000 | [diff] [blame] | 50 | 'ports.gyp:ports', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 51 | 'utils.gyp:utils', |
| 52 | ], |
| 53 | }, |
| 54 | { |
| 55 | 'target_name': 'skimage', |
| 56 | 'type': 'executable', |
| 57 | 'sources': [ |
| 58 | '../tools/skimage_main.cpp', |
| 59 | ], |
| 60 | 'dependencies': [ |
| 61 | 'core.gyp:core', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 62 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 63 | 'images.gyp:images', |
| caryclark@google.com | afcb55c | 2011-12-14 17:12:04 +0000 | [diff] [blame] | 64 | 'ports.gyp:ports', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 65 | 'utils.gyp:utils', |
| 66 | ], |
| 67 | }, |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 68 | { |
| 69 | 'target_name': 'render_pictures', |
| 70 | 'type': 'executable', |
| 71 | 'sources': [ |
| 72 | '../tools/render_pictures_main.cpp', |
| keyar@chromium.org | a2333d9 | 2012-07-16 17:29:16 +0000 | [diff] [blame] | 73 | ], |
| 74 | 'include_dirs': [ |
| 75 | '../src/pipe/utils/', |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 76 | ], |
| 77 | 'dependencies': [ |
| 78 | 'core.gyp:core', |
| 79 | 'images.gyp:images', |
| 80 | 'ports.gyp:ports', |
| keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame^] | 81 | 'tools.gyp:PictureRenderer', |
| twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 82 | 'tools.gyp:picture_utils', |
| 83 | ], |
| 84 | }, |
| 85 | { |
| reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 86 | 'target_name': 'bench_pictures', |
| 87 | 'type': 'executable', |
| 88 | 'sources': [ |
| keyar@chromium.org | cf6c44c | 2012-07-09 19:37:40 +0000 | [diff] [blame] | 89 | '../tools/bench_pictures_main.cpp', |
| 90 | '../src/pipe/utils/SamplePipeControllers.h', |
| 91 | '../src/pipe/utils/SamplePipeControllers.cpp', |
| reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 92 | ], |
| 93 | 'include_dirs': [ |
| 94 | '../bench', |
| keyar@chromium.org | cf6c44c | 2012-07-09 19:37:40 +0000 | [diff] [blame] | 95 | '../src/pipe/utils/', |
| reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 96 | ], |
| 97 | 'dependencies': [ |
| 98 | 'core.gyp:core', |
| 99 | 'ports.gyp:ports', |
| keyar@chromium.org | cf6c44c | 2012-07-09 19:37:40 +0000 | [diff] [blame] | 100 | 'images.gyp:images', |
| reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 101 | 'tools.gyp:picture_utils', |
| 102 | 'bench.gyp:bench_timer', |
| 103 | ], |
| 104 | }, |
| 105 | { |
| keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame^] | 106 | 'target_name': 'PictureRenderer', |
| 107 | 'type': 'static_library', |
| 108 | 'sources': [ |
| 109 | '../tools/PictureRenderer.cpp', |
| 110 | '../src/pipe/utils/SamplePipeControllers.h', |
| 111 | '../src/pipe/utils/SamplePipeControllers.cpp', |
| 112 | ], |
| 113 | 'include_dirs': [ |
| 114 | '../src/pipe/utils/', |
| 115 | ], |
| 116 | 'dependencies': [ |
| 117 | 'core.gyp:core', |
| 118 | 'tools.gyp:picture_utils', |
| 119 | ], |
| 120 | }, |
| 121 | { |
| twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 122 | 'target_name': 'picture_utils', |
| 123 | 'type': 'static_library', |
| 124 | 'sources': [ |
| 125 | '../tools/picture_utils.cpp', |
| 126 | ], |
| 127 | 'dependencies': [ |
| 128 | 'core.gyp:core', |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 129 | ], |
| 130 | }, |
| reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 131 | { |
| 132 | 'target_name': 'pinspect', |
| 133 | 'type': 'executable', |
| 134 | 'sources': [ |
| 135 | '../tools/pinspect.cpp', |
| 136 | ], |
| 137 | 'dependencies': [ |
| 138 | 'core.gyp:core', |
| 139 | 'effects.gyp:effects', |
| 140 | 'images.gyp:images', |
| 141 | 'ports.gyp:ports', |
| 142 | 'utils.gyp:utils', |
| 143 | ], |
| 144 | }, |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 145 | ], |
| 146 | } |
| 147 | |
| 148 | # Local Variables: |
| 149 | # tab-width:2 |
| 150 | # indent-tabs-mode:nil |
| 151 | # End: |
| 152 | # vim: set expandtab tabstop=2 shiftwidth=2: |