Merge "Update base files script works anywhere." am: 7d54744e87
am: 4d2b22c781
Change-Id: If81a665edab407fba61fe2bb6a5f2dfa32b53716
This commit is contained in:
commit
2d86069a1c
1 changed files with 8 additions and 8 deletions
|
@ -1,11 +1,11 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ ! -d hardware/interfaces ] ; then
|
if [ ! -d $ANDROID_BUILD_TOP/hardware/interfaces ] ; then
|
||||||
echo "Where is hardware/interfaces?";
|
echo "Where is hardware/interfaces?";
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -d system/libhidl/transport ] ; then
|
if [ ! -d $ANDROID_BUILD_TOP/system/libhidl/transport ] ; then
|
||||||
echo "Where is system/libhidl/transport?";
|
echo "Where is system/libhidl/transport?";
|
||||||
exit 1;
|
exit 1;
|
||||||
fi
|
fi
|
||||||
|
@ -20,24 +20,24 @@ options="-Lexport-header \
|
||||||
|
|
||||||
# hardware/libhardware
|
# hardware/libhardware
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o hardware/libhardware/include/hardware/sensors-base.h \
|
-o $ANDROID_BUILD_TOP/hardware/libhardware/include/hardware/sensors-base.h \
|
||||||
android.hardware.sensors@1.0
|
android.hardware.sensors@1.0
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o hardware/libhardware/include/hardware/nfc-base.h \
|
-o $ANDROID_BUILD_TOP/hardware/libhardware/include/hardware/nfc-base.h \
|
||||||
android.hardware.nfc@1.0
|
android.hardware.nfc@1.0
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o hardware/libhardware/include/hardware/gnss-base.h \
|
-o $ANDROID_BUILD_TOP/hardware/libhardware/include/hardware/gnss-base.h \
|
||||||
android.hardware.gnss@1.0
|
android.hardware.gnss@1.0
|
||||||
|
|
||||||
# system/core
|
# system/core
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o system/core/include/system/graphics-base.h \
|
-o $ANDROID_BUILD_TOP/system/core/include/system/graphics-base.h \
|
||||||
android.hardware.graphics.common@1.0
|
android.hardware.graphics.common@1.0
|
||||||
|
|
||||||
# system/media
|
# system/media
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o system/media/audio/include/system/audio-base.h \
|
-o $ANDROID_BUILD_TOP/system/media/audio/include/system/audio-base.h \
|
||||||
android.hardware.audio.common@2.0
|
android.hardware.audio.common@2.0
|
||||||
hidl-gen $options \
|
hidl-gen $options \
|
||||||
-o system/media/audio/include/system/audio_effect-base.h \
|
-o $ANDROID_BUILD_TOP/system/media/audio/include/system/audio_effect-base.h \
|
||||||
android.hardware.audio.effect@2.0
|
android.hardware.audio.effect@2.0
|
||||||
|
|
Loading…
Reference in a new issue