There are some code snippet of build/envsetup.sh
# Execute the contents of any vendorsetup.sh files we can find.
for f in `/bin/ls vendor/*/vendorsetup.sh 2> /dev/null`
do
echo "including $f"
. $f
done
unset f
That means will travel all vendorsetup.sh under vendor/*/