Disable imagefiltersgraph from running through pipe on android

While we figure out what the problem is.
Review URL: https://codereview.appspot.com/6441164

git-svn-id: http://skia.googlecode.com/svn/trunk@5193 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/imagefiltersgraph.cpp b/gm/imagefiltersgraph.cpp
index 7c60546..1535064 100644
--- a/gm/imagefiltersgraph.cpp
+++ b/gm/imagefiltersgraph.cpp
@@ -20,6 +20,12 @@
     ImageFiltersGraphGM() : fInitialized(false) {}
 
 protected:
+#ifdef SK_BUILD_FOR_ANDROID
+    // This test is currently broken when using pipe on Android
+    virtual uint32_t onGetFlags() const SK_OVERRIDE {
+        return this->INHERITED::onGetFlags() | skiagm::GM::kSkipPipe_Flag;
+    }
+#endif
 
     virtual SkString onShortName() {
         return SkString("imagefiltersgraph");