blob: b1644c60490da7dfe1af7345b20364110ad3992c [file] [log] [blame]
#!/bin/bash
# Run a GN-built Android binary on the connected device.
#
# Example usage:
# $ ninja -C out dm
# $ droid out/dm --src gm --config gpu
#
# See https://skia.org/user/quick/gn for build instructions.
path=$1
name=$(basename $1)
shift
args=$@
set -e
set -x
adb push $path /data/local/tmp/
adb push resources /data/local/tmp/
adb shell "cd /data/local/tmp; ./$name $args"