commit | 03fc17cbf86c9066715a65f9a342d1c832884554 | [log] [tgz] |
---|---|---|
author | borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Jul 20 18:19:06 2012 +0000 |
committer | borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Fri Jul 20 18:19:06 2012 +0000 |
tree | 1d19b46048bc05cfefc74d3a2235eb02e35925ca | |
parent | 278de8b3b3602a2e8ea1915e27dada01cb686c34 [diff] [blame] |
Disable bitmapcopy gm on Android This has been failing on Nexus S. Disable so that we don't miss further regressions. Bug @ http://code.google.com/p/skia/issues/detail?id=705 Review URL: https://codereview.appspot.com/6427053 git-svn-id: http://skia.googlecode.com/svn/trunk@4696 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/bitmapcopy.cpp b/gm/bitmapcopy.cpp index edf6445..4b73baf 100644 --- a/gm/bitmapcopy.cpp +++ b/gm/bitmapcopy.cpp
@@ -119,7 +119,8 @@ ////////////////////////////////////////////////////////////////////////////// +#ifndef SK_BUILD_FOR_ANDROID static GM* MyFactory(void*) { return new BitmapCopyGM; } static GMRegistry reg(MyFactory); - +#endif }