Move SK_SUPPORT_GPU checks below first #includes in case the macro is defined in SkUserConfig.h rather than by the build system.



git-svn-id: http://skia.googlecode.com/svn/trunk@4948 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/texdata.cpp b/gm/texdata.cpp
index 2c9b6ed..927ee17 100644
--- a/gm/texdata.cpp
+++ b/gm/texdata.cpp
@@ -7,9 +7,10 @@
  */
 
 // This test only works with the GPU backend.
-#if SK_SUPPORT_GPU
 
 #include "gm.h"
+
+#if SK_SUPPORT_GPU
 #include "GrContext.h"
 #include "effects/GrSingleTextureEffect.h"
 #include "SkColorPriv.h"