Setup the ci build to test also Android tests when available

With this script, the easiest way to run the test suite is now:

   bash -c "export ANDROID_SDK_PATH=$HOME/bin/android-sdk-linux; \
            export ANDROID_NDK_PATH=$HOME/bin/android-ndk-r10e; \
            source ./scripts/ci/build.sh; \
            bazel_build output/ci"

--
MOS_MIGRATED_REVID=102334239
diff --git a/scripts/bootstrap/buildenv.sh b/scripts/bootstrap/buildenv.sh
index ab4dbea..be2cfa1 100755
--- a/scripts/bootstrap/buildenv.sh
+++ b/scripts/bootstrap/buildenv.sh
@@ -134,3 +134,9 @@
     fail "Cannot determine JDK version, please set \$JAVA_HOME."
   fi
 }
+
+# Return the target that a bind point to, using Bazel query.
+function get_bind_target() {
+  $BAZEL --bazelrc=${BAZELRC} --nomaster_bazelrc test \
+    query "deps($1, 1) - $1"
+}