Lines Matching full:goroot
7 # The compiler runs locally, then a copy of the GOROOT is pushed to a
14 echo 'androidtest.bash must be run from $GOROOT/src' 1>&2
32 export GOROOT=$(dirname $(pwd))
33 export PATH=$GOROOT/bin:$PATH
45 # Push GOROOT to target device.
50 # /data/local/tmp/goroot. The adb sync command does not follow
53 FAKE_GOROOT=$ANDROID_PRODUCT_OUT/data/local/tmp/goroot
56 cp -a "${GOROOT}/src" "${FAKE_GOROOT}/"
57 cp -a "${GOROOT}/test" "${FAKE_GOROOT}/"
58 cp -a "${GOROOT}/lib" "${FAKE_GOROOT}/"
59 cp -a "${GOROOT}/pkg/android_$GOARCH" "${FAKE_GOROOT}/pkg/"
61 adb shell mkdir -p /data/local/tmp/goroot
67 (cd $ANDROID_PRODUCT_OUT/data/local/tmp/goroot; find . >> $CLEANER.go)