summaryrefslogtreecommitdiffstats
path: root/update-makefiles.sh
diff options
context:
space:
mode:
authorKeun Soo YIM <yim@google.com>2018-10-16 11:47:25 -0700
committerKeun Soo YIM <yim@google.com>2018-10-19 12:34:16 -0700
commit7b46731b0eac8685e4c90091999cb46c1f3750a0 (patch)
tree47d63990cc06897d38898ec73af419d1fd1a63ff /update-makefiles.sh
parent7d49f30d3e9688a3fd646c132236bf7322084a67 (diff)
downloadandroid_hardware_interfaces-7b46731b0eac8685e4c90091999cb46c1f3750a0.tar.gz
android_hardware_interfaces-7b46731b0eac8685e4c90091999cb46c1f3750a0.tar.bz2
android_hardware_interfaces-7b46731b0eac8685e4c90091999cb46c1f3750a0.zip
run vts build rule updater when hal make files are updated
Test: ./update-makefiles.sh Bug: 117826861 Change-Id: I7c7b22ecff1a373cd905fedd96bdaa12e1a558f0
Diffstat (limited to 'update-makefiles.sh')
-rwxr-xr-xupdate-makefiles.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/update-makefiles.sh b/update-makefiles.sh
index b7e42355e..14c5b01ca 100755
--- a/update-makefiles.sh
+++ b/update-makefiles.sh
@@ -1,4 +1,12 @@
#!/bin/bash
+# Script to update Android make-files for HAL and VTS modules.
+
+set -e
+
+if [ -z "$ANDROID_BUILD_TOP" ]; then
+ echo "Missing ANDROID_BUILD_TOP env variable. Run 'lunch' first."
+ exit 1
+fi
source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
@@ -6,3 +14,8 @@ do_makefiles_update \
"android.hardware:hardware/interfaces" \
"android.hidl:system/libhidl/transport"
+echo "Updating files at $ANDROID_BUILD_TOP/test/vts-testcase/hal"
+pushd $ANDROID_BUILD_TOP/test/vts-testcase/hal
+./script/update_makefiles.py
+popd
+