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