Index: platform_tools/android/bin/utils/setup_skia_out.sh |
diff --git a/platform_tools/android/bin/utils/setup_skia_out.sh b/platform_tools/android/bin/utils/setup_skia_out.sh |
deleted file mode 100644 |
index 78375a5cd7f6b55c68916f26a34792d29af51678..0000000000000000000000000000000000000000 |
--- a/platform_tools/android/bin/utils/setup_skia_out.sh |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-#!/bin/bash |
-# |
- |
-UTIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
- |
-if [ -z "$SKIA_OUT" ] |
-then |
- |
- if [ ! -f .android_config ] |
- then |
- echo "Unable to find the .android_config file" |
- exit 1; |
- fi |
- |
- export SKIA_OUT=$(cat .android_config) |
- |
- if [ ! -d ${SKIA_OUT} ] |
- then |
- echo "The contents of .android_config are invalid" |
- exit 1; |
- fi |
-fi |