Add a helper script to expose which version of adb the android scripts use.

Review URL: https://codereview.chromium.org/692633002
This commit is contained in:
djsollen 2014-10-29 12:59:50 -07:00 committed by Commit bot
parent 7316b100df
commit c96aa64246

View File

@ -0,0 +1,12 @@
#!/bin/bash
#
# adb_print_path: prints the path to the copy of adb that will be used by Skia's
# android scripts. This is used by Skia's build infrastructure to ensure that
# we use the same adb revision (and instance).
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $SCRIPT_DIR/android_setup.sh
source $SCRIPT_DIR/utils/setup_adb.sh
echo $ADB
exit 0