blob: b1644c60490da7dfe1af7345b20364110ad3992c [file] [log] [blame]
mtkleinf3155ad2016-09-08 10:03:21 -07001#!/bin/bash
2
3# Run a GN-built Android binary on the connected device.
4#
5# Example usage:
6# $ ninja -C out dm
7# $ droid out/dm --src gm --config gpu
8#
9# See https://skia.org/user/quick/gn for build instructions.
10
11path=$1
12name=$(basename $1)
13shift
14args=$@
15
16set -e
17set -x
18
egdanielc19440d2016-09-14 14:42:02 -070019adb push $path /data/local/tmp/
20adb push resources /data/local/tmp/
mtkleinf3155ad2016-09-08 10:03:21 -070021adb shell "cd /data/local/tmp; ./$name $args"