Remove shallow clone causing errors
diff --git a/skia/dependencies/make_skia_android.sh b/skia/dependencies/make_skia_android.sh
index 45beb90..175625e 100755
--- a/skia/dependencies/make_skia_android.sh
+++ b/skia/dependencies/make_skia_android.sh
@@ -17,7 +17,7 @@
 if [ ! -d skia ]; then
     echo "Cloning Skia stable branch..."
     # TODO:(umberto) --depth 1 test
-    git clone -b $SKIA_STABLE_BRANCH --depth 1 $SKIA_REPO
+    git clone -b $SKIA_STABLE_BRANCH $SKIA_REPO
 fi
 
 ARCH=$1