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.
13 lines
298 B
13 lines
298 B
#!/bin/bash
|
|
|
|
if [[ -z "$ANDROID_BUILD_TOP" ]]; then
|
|
>&2 echo "ANDROID_BUILD_TOP not set in environment. Run lunch."
|
|
exit 1
|
|
fi
|
|
|
|
set -e
|
|
set -x
|
|
|
|
$ANDROID_BUILD_TOP/build/soong/soong_ui.bash --make-mode update-ndk-abi
|
|
update-ndk-abi --src-dir $ANDROID_BUILD_TOP $ANDROID_BUILD_TOP/ndk-abi-out "$@"
|