[go: nahoru, domu]

blob: c58240f0f582c9a3e246f8846112e97d97a88311 [file] [log] [blame]
Iliyan Malchev7fd352e2016-08-10 08:02:31 -07001#!/bin/bash
Keun Soo YIM7b467312018-10-16 11:47:25 -07002# 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
Iliyan Malchev7fd352e2016-08-10 08:02:31 -070010
Steven Moreland8e918732017-05-11 15:42:32 -070011source $ANDROID_BUILD_TOP/system/tools/hidl/update-makefiles-helper.sh
Iliyan Malchev7fd352e2016-08-10 08:02:31 -070012
Steven Moreland3a18d732017-03-20 04:19:10 -070013do_makefiles_update \
14 "android.hardware:hardware/interfaces" \
15 "android.hidl:system/libhidl/transport"