| 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 'sources': [ | 10 'sources': [ |
| 11 # base class for GMs | 11 # base class for GMs |
| 12 '../gm/gm.cpp', | 12 '../gm/gm.cpp', |
| 13 '../gm/gm.h', | 13 '../gm/gm.h', |
| 14 | 14 |
| 15 '../gm/aaclip.cpp', | 15 '../gm/aaclip.cpp', |
| 16 '../gm/aarectmodes.cpp', | 16 '../gm/aarectmodes.cpp', |
| 17 '../gm/alphagradients.cpp', | 17 '../gm/alphagradients.cpp', |
| 18 '../gm/androidfallback.cpp', | |
| 19 '../gm/arcofzorro.cpp', | 18 '../gm/arcofzorro.cpp', |
| 20 '../gm/arithmode.cpp', | 19 '../gm/arithmode.cpp', |
| 21 '../gm/beziereffects.cpp', | 20 '../gm/beziereffects.cpp', |
| 22 '../gm/bicubicfilter.cpp', | 21 '../gm/bicubicfilter.cpp', |
| 23 '../gm/bigblurs.cpp', | 22 '../gm/bigblurs.cpp', |
| 24 '../gm/bigmatrix.cpp', | 23 '../gm/bigmatrix.cpp', |
| 25 '../gm/bigtext.cpp', | 24 '../gm/bigtext.cpp', |
| 26 '../gm/bitmapcopy.cpp', | 25 '../gm/bitmapcopy.cpp', |
| 27 '../gm/bitmapmatrix.cpp', | 26 '../gm/bitmapmatrix.cpp', |
| 28 '../gm/bitmapfilters.cpp', | 27 '../gm/bitmapfilters.cpp', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 177 |
| 179 # Files needed by particular GMs | 178 # Files needed by particular GMs |
| 180 '../src/utils/debugger/SkDrawCommand.h', | 179 '../src/utils/debugger/SkDrawCommand.h', |
| 181 '../src/utils/debugger/SkDrawCommand.cpp', | 180 '../src/utils/debugger/SkDrawCommand.cpp', |
| 182 '../src/utils/debugger/SkDebugCanvas.h', | 181 '../src/utils/debugger/SkDebugCanvas.h', |
| 183 '../src/utils/debugger/SkDebugCanvas.cpp', | 182 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 184 '../src/utils/debugger/SkObjectParser.h', | 183 '../src/utils/debugger/SkObjectParser.h', |
| 185 '../src/utils/debugger/SkObjectParser.cpp', | 184 '../src/utils/debugger/SkObjectParser.cpp', |
| 186 | 185 |
| 187 ], | 186 ], |
| 188 # TODO(epoger): Disabling while we investigate http://skbug.com/2313 | |
| 189 # epoger will re-enable by 10 April 2014 | |
| 190 'conditions': [ | 187 'conditions': [ |
| 188 # TODO: Several GMs are known to cause particular problems on Android, so |
| 189 # we disable them on Android. See http://skbug.com/2326 |
| 191 [ 'skia_os == "android"', { | 190 [ 'skia_os == "android"', { |
| 192 'sources!': [ | 191 'sources!': [ |
| 192 # TODO(borenet): Causes assertion failure on Nexus S. |
| 193 # See http://skbug.com/705 |
| 194 '../gm/bitmapcopy.cpp', |
| 195 |
| 196 # SOME of the bitmaprect tests are disabled on Android; see |
| 197 # ../gm/bitmaprect.cpp |
| 198 |
| 199 # Fail for now until the appropriate freetype changes are submitted. |
| 200 '../gm/coloremoji.cpp', |
| 201 |
| 202 # We skip GPU tests in this GM; see |
| 203 # ../gm/deviceproperties.cpp |
| 204 |
| 205 # TODO(bsalomon): Hangs on Xoom and Nexus S. See http://skbug.com/637 |
| 206 '../gm/drawbitmaprect.cpp', |
| 207 |
| 208 # TODO(epoger): Crashes on Nexus 10. See http://skbug.com/2313 |
| 193 '../gm/imagefilterscropexpand.cpp', | 209 '../gm/imagefilterscropexpand.cpp', |
| 210 |
| 211 # TODO(borenet): Causes Nexus S to reboot. See http://skbug.com/665 |
| 212 '../gm/shadertext.cpp', |
| 213 '../gm/shadertext2.cpp', |
| 214 '../gm/shadertext3.cpp', |
| 215 |
| 216 # TODO(reed): Allocates more memory than Android devices are capable of |
| 217 # fulfilling. See http://skbug.com/1978 |
| 218 '../gm/verylargebitmap.cpp', |
| 219 ], |
| 220 |
| 221 'sources': [ |
| 222 '../gm/androidfallback.cpp', |
| 194 ], | 223 ], |
| 195 }], | 224 }], |
| 196 # base class for GMs | |
| 197 ], | 225 ], |
| 198 } | 226 } |
| OLD | NEW |