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