123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #!/bin/bash
- set -e
- export GAPPS_COMMON=common
- export VENDOR=gapps
- MY_DIR="${BASH_SOURCE%/*}"
- if [[ ! -d "$MY_DIR" ]]; then MY_DIR="$PWD"; fi
- CM_ROOT="$MY_DIR"/../..
- HELPER="$CM_ROOT"/vendor/cm/build/tools/extract_utils.sh
- if [ ! -f "$HELPER" ]; then
- echo "Unable to find helper script at $HELPER"
- exit 1
- fi
- . "$HELPER"
- while [ "$1" != "" ]; do
- case $1 in
- -t | --target ) shift
- export TARGET=$1
- esac
- shift
- done
- if [ -z "$TARGET" ]; then
- echo "Warning, target for extraction not specified, defaulting to arm"
- TARGET=arm
- fi
- setup_vendor "$GAPPS_COMMON" "$VENDOR" "$CM_ROOT" true
- write_headers "arm arm64 x86"
- write_makefiles "$MY_DIR"/proprietary-files-common.txt
- write_footers
- setup_vendor "$TARGET" "$VENDOR" "$CM_ROOT" true
- write_headers "$TARGET"
- write_makefiles "$MY_DIR"/proprietary-files-$TARGET.txt
- printf '\n%s\n' "\$(call inherit-product, vendor/gapps/common/common-vendor.mk)" >> "$PRODUCTMK"
- write_footers
- for f in `find "$MY_DIR" -type f -name Android.mk`; do sed -i s/TARGET_DEVICE/TARGET_ARCH/g $f; done
|