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 7SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 8source $SCRIPT_DIR/android_setup.sh 9source $SCRIPT_DIR/utils/setup_adb.sh 10 11echo $ADB 12exit 0 13