| OLD | NEW |
| 1 # include this gypi to include all the golden master slides. | 1 # include this gypi to include all the golden master slides. |
| 2 { | 2 { |
| 3 'include_dirs': [ | 3 'include_dirs': [ |
| 4 '../gm', | 4 '../gm', |
| 5 # include dirs needed by particular GMs | 5 # include dirs needed by particular GMs |
| 6 '../src/utils/debugger', | 6 '../src/utils/debugger', |
| 7 '../src/images', | 7 '../src/images', |
| 8 '../src/lazy', | 8 '../src/lazy', |
| 9 ], | 9 ], |
| 10 'conditions': [ | 10 'conditions': [ |
| 11 # If we're building SampleApp on the bots, no need to link in the GM slides. | 11 # If we're building SampleApp on the bots, no need to link in the GM slides. |
| 12 # We're not going to run it; we're only making sure it still builds. | 12 # We're not going to run it; we're only making sure it still builds. |
| 13 # It'd be nice to do this in SampleApp.gypi, but I can't find a way to make
it work. | 13 # It'd be nice to do this in SampleApp.gypi, but I can't find a way to make
it work. |
| 14 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { | 14 [ 'not ("<(_target_name)" == "SampleApp" and skia_is_bot)', { |
| 15 'sources': [ | 15 'sources': [ |
| 16 '../gm/aaclip.cpp', | 16 '../gm/aaclip.cpp', |
| 17 '../gm/aarectmodes.cpp', | 17 '../gm/aarectmodes.cpp', |
| 18 '../gm/alphagradients.cpp', | 18 '../gm/alphagradients.cpp', |
| 19 '../gm/arcofzorro.cpp', | 19 '../gm/arcofzorro.cpp', |
| 20 '../gm/arithmode.cpp', | 20 '../gm/arithmode.cpp', |
| 21 '../gm/astcbitmap.cpp', | 21 '../gm/astcbitmap.cpp', |
| 22 '../gm/beziereffects.cpp', | 22 '../gm/beziereffects.cpp', |
| 23 '../gm/beziers.cpp', |
| 23 '../gm/bigblurs.cpp', | 24 '../gm/bigblurs.cpp', |
| 24 '../gm/bigmatrix.cpp', | 25 '../gm/bigmatrix.cpp', |
| 25 '../gm/bigtext.cpp', | 26 '../gm/bigtext.cpp', |
| 26 '../gm/bitmapcopy.cpp', | 27 '../gm/bitmapcopy.cpp', |
| 27 '../gm/bitmapmatrix.cpp', | 28 '../gm/bitmapmatrix.cpp', |
| 28 '../gm/bitmapfilters.cpp', | 29 '../gm/bitmapfilters.cpp', |
| 29 '../gm/bitmappremul.cpp', | 30 '../gm/bitmappremul.cpp', |
| 30 '../gm/bitmaprect.cpp', | 31 '../gm/bitmaprect.cpp', |
| 31 '../gm/bitmaprecttest.cpp', | 32 '../gm/bitmaprecttest.cpp', |
| 32 '../gm/bitmapscroll.cpp', | 33 '../gm/bitmapscroll.cpp', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 # '../gm/scalebitmap.cpp', | 156 # '../gm/scalebitmap.cpp', |
| 156 '../gm/shaderbounds.cpp', | 157 '../gm/shaderbounds.cpp', |
| 157 '../gm/selftest.cpp', | 158 '../gm/selftest.cpp', |
| 158 '../gm/shadertext.cpp', | 159 '../gm/shadertext.cpp', |
| 159 '../gm/shadertext2.cpp', | 160 '../gm/shadertext2.cpp', |
| 160 '../gm/shadertext3.cpp', | 161 '../gm/shadertext3.cpp', |
| 161 '../gm/shadows.cpp', | 162 '../gm/shadows.cpp', |
| 162 '../gm/shallowgradient.cpp', | 163 '../gm/shallowgradient.cpp', |
| 163 '../gm/simpleaaclip.cpp', | 164 '../gm/simpleaaclip.cpp', |
| 164 '../gm/skbug1719.cpp', | 165 '../gm/skbug1719.cpp', |
| 166 '../gm/smallarc.cpp', |
| 165 '../gm/stringart.cpp', | 167 '../gm/stringart.cpp', |
| 166 '../gm/spritebitmap.cpp', | 168 '../gm/spritebitmap.cpp', |
| 167 '../gm/srcmode.cpp', | 169 '../gm/srcmode.cpp', |
| 168 '../gm/strokefill.cpp', | 170 '../gm/strokefill.cpp', |
| 169 '../gm/strokerect.cpp', | 171 '../gm/strokerect.cpp', |
| 170 '../gm/strokerects.cpp', | 172 '../gm/strokerects.cpp', |
| 171 '../gm/strokes.cpp', | 173 '../gm/strokes.cpp', |
| 172 '../gm/stroketext.cpp', | 174 '../gm/stroketext.cpp', |
| 173 '../gm/surface.cpp', | 175 '../gm/surface.cpp', |
| 174 '../gm/tablecolorfilter.cpp', | 176 '../gm/tablecolorfilter.cpp', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 '../gm/shadertext2.cpp', | 236 '../gm/shadertext2.cpp', |
| 235 '../gm/shadertext3.cpp', | 237 '../gm/shadertext3.cpp', |
| 236 | 238 |
| 237 # TODO(reed): Allocates more memory than Android devices are capable of | 239 # TODO(reed): Allocates more memory than Android devices are capable of |
| 238 # fulfilling. See http://skbug.com/1978 | 240 # fulfilling. See http://skbug.com/1978 |
| 239 '../gm/verylargebitmap.cpp', | 241 '../gm/verylargebitmap.cpp', |
| 240 ], | 242 ], |
| 241 }], | 243 }], |
| 242 ], | 244 ], |
| 243 } | 245 } |
| OLD | NEW |