Home | History | Annotate | Download | only in test

Lines Matching refs:zipalign

99 # Zipalign is not on the PATH in some configs, auto-detect it.
100 if [ -z "$ZIPALIGN" ]; then
101 if which zipalign >/dev/null; then
102 ZIPALIGN="zipalign";
104 # TODO: Add a dependency for zipalign in Android.run-test.mk
107 darwin*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/darwin/bin/zipalign" ;;
108 linux*) ZIPALIGN="$ANDROID_BUILD_TOP/prebuilts/sdk/tools/linux/bin/zipalign" ;;
109 *) echo "Can't find zipalign: unknown: $OSTYPE" >&2;;
113 export ZIPALIGN