Remove conditional guard from core android helper

Forgot this in https://review.skia.org/1138098
I *hope* this is the cause of the problems on
http://ag/37762228

Change-Id: Ibc57f92d1f90fc012968f8cf38495b430e0d974f
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/1138916
Reviewed-by: Noelle Scobie <nscobie@google.com>
Auto-Submit: Kaylee Lubick <kjlubick@google.com>
Commit-Queue: Noelle Scobie <nscobie@google.com>
diff --git a/src/image/SkImage_AndroidFactories.cpp b/src/image/SkImage_AndroidFactories.cpp
index 5553f04..f4a3825 100644
--- a/src/image/SkImage_AndroidFactories.cpp
+++ b/src/image/SkImage_AndroidFactories.cpp
@@ -5,11 +5,8 @@
  * found in the LICENSE file.
  */
 
-#include "include/core/SkTypes.h"
-
-#if defined(SK_BUILD_FOR_ANDROID) && __ANDROID_API__ >= 26
-
 #include "include/android/SkImageAndroid.h"
+
 #include "include/core/SkBitmap.h"
 #include "src/core/SkImagePriv.h"
 
@@ -21,4 +18,3 @@
 
 }  // namespace SkImages
 
-#endif