Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: platform_tools/android/bin/android_launch_app

Issue 1185473003: Fixup android launch script (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash 1 #!/bin/bash
2 # 2 #
3 # android_launch_app: Launches the skia sampleApp on the device. 3 # android_launch_app: Launches the skia sampleApp on the device.
4 4
5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6 source $SCRIPT_DIR/android_setup.sh 6 source $SCRIPT_DIR/android_setup.sh
7 source $SCRIPT_DIR/utils/setup_adb.sh 7 source $SCRIPT_DIR/utils/setup_adb.sh
8 8
9 # TODO: check to ensure that the app exists on the device and prompt to install 9 # TODO: check to ensure that the app exists on the device and prompt to install
10 10
11 if [[ -n $RESOURCE_PATH ]]; then 11 if [[ -n $RESOURCE_PATH ]]; then
12 adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH 12 adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH
13 fi 13 fi
14 14
15 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.SkiaSampleActivity" --es " cmdLineFlags" "${APP_ARGS[*]}" 15 app=${APP_ARGS[0]}
16 if [[ ${app} == '-'* ]]; then
17 app="SampleApp"
18 APP_ARGS=( "SampleApp" ${APP_ARGS[*]} )
19 fi
16 20
21 if [[ ${app} == 'SampleApp' ]]; then
22 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.SkiaSampleActivity" -- es "cmdLineFlags" "${APP_ARGS[*]:1}"
23 elif [[ ${app} == "VisualBench" ]] ; then
24 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.VisualBenchActivity" - -es "cmdLineFlags" "${APP_ARGS[*]:1}"
25 else
26 echo "ERROR: supports either 'SampleApp' or 'VisualBench' as valid apps"
27 fi
28
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698