You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
if [[ "${ANDROID_BUILD_TOP}" == "" ]]; then
|
|
echo "Run source build/envsetup.sh && lunch to be able to format Android.bp"
|
|
exit 2
|
|
fi
|
|
|
|
DIR=$(dirname $0)
|
|
|
|
"${DIR}"/generate_bp.py "$DIR" >"${DIR}/../Android.bp"
|
|
|
|
bpfmt -w "${DIR}/../Android.bp"
|
|
|