| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # include this gypi to include all the golden master slides. | 5 # include this gypi to include all the golden master slides. |
| 6 { | 6 { |
| 7 'include_dirs': [ | 7 'include_dirs': [ |
| 8 '../gm', | 8 '../gm', |
| 9 # include dirs needed by particular GMs | 9 # include dirs needed by particular GMs |
| 10 '../src/utils/debugger', | 10 '../src/utils/debugger', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 '../src/utils/debugger/SkDebugCanvas.cpp', | 27 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 28 '../src/utils/debugger/SkObjectParser.h', | 28 '../src/utils/debugger/SkObjectParser.h', |
| 29 '../src/utils/debugger/SkObjectParser.cpp', | 29 '../src/utils/debugger/SkObjectParser.cpp', |
| 30 ], | 30 ], |
| 31 'sources!': [ | 31 'sources!': [ |
| 32 '../gm/annotated_text.cpp', | 32 '../gm/annotated_text.cpp', |
| 33 '../gm/system_preferences_default.cpp', | 33 '../gm/system_preferences_default.cpp', |
| 34 '../gm/techtalk1.cpp', | 34 '../gm/techtalk1.cpp', |
| 35 ], | 35 ], |
| 36 }], | 36 }], |
| 37 # TODO: Several GMs are known to cause particular problems on Android, so | |
| 38 # we disable them on Android. See http://skbug.com/2326 | |
| 39 [ 'skia_os == "android"', { | |
| 40 'sources!': [ | |
| 41 # TODO(borenet): Causes assertion failure on Nexus S. | |
| 42 # See http://skbug.com/705 | |
| 43 '../gm/bitmapcopy.cpp', | |
| 44 | |
| 45 # SOME of the bitmaprect tests are disabled on Android; see | |
| 46 # ../gm/bitmaprect.cpp | |
| 47 | |
| 48 # We skip GPU tests in this GM; see | |
| 49 # ../gm/deviceproperties.cpp | |
| 50 | |
| 51 # TODO(bsalomon): Hangs on Xoom and Nexus S. See http://skbug.com/637 | |
| 52 '../gm/drawbitmaprect.cpp', | |
| 53 | |
| 54 # TODO(epoger): Crashes on Nexus 10. See http://skbug.com/2313 | |
| 55 '../gm/imagefilterscropexpand.cpp', | |
| 56 | |
| 57 # TODO(borenet): Causes Nexus S to reboot. See http://skbug.com/665 | |
| 58 '../gm/shadertext.cpp', | |
| 59 '../gm/shadertext2.cpp', | |
| 60 '../gm/shadertext3.cpp', | |
| 61 | |
| 62 # TODO(reed): Allocates more memory than Android devices are capable of | |
| 63 # fulfilling. See http://skbug.com/1978 | |
| 64 '../gm/verylargebitmap.cpp', | |
| 65 ], | |
| 66 }], | |
| 67 ], | 37 ], |
| 68 } | 38 } |
| OLD | NEW |