Home | History | Annotate | Download | only in interfaces
      1 #!/bin/bash
      2 # Script to update Android make-files for HAL and VTS modules.
      3 
      4 set -e
      5 
      6 if [ -z "$ANDROID_BUILD_TOP" ]; then
      7     echo "Missing ANDROID_BUILD_TOP env variable. Run 'lunch' first."
      8     exit 1
      9 fi
     10 
     11 source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
     12 
     13 do_makefiles_update \
     14   "android.hardware:hardware/interfaces" \
     15   "android.hidl:system/libhidl/transport"
     16