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

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

Issue 1181973008: Modify android_install_app to install VisualBench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: cleanup 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 | platform_tools/android/bin/android_launch_app » ('j') | 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_install_app: installs the skia sampleApp on the device. 3 # android_install_app: installs the skia sampleApp on the device.
4 4
5 function print_usage { 5 function print_usage {
6 echo "USAGE: android_install_app [options]" 6 echo "USAGE: android_install_app [options]"
7 echo " Options: -f Forces the package to be installed by removing any " 7 echo " Options: -f Forces the package to be installed by removing any "
8 echo " previously installed packages" 8 echo " previously installed packages"
9 echo " -h Prints this help message" 9 echo " -h Prints this help message"
10 echo " --release Install the release build of Skia" 10 echo " --release Install the release build of Skia"
11 echo " -s [device_s/n] Serial number of the device to be used" 11 echo " -s [device_s/n] Serial number of the device to be used"
12 echo " AppName Can be either SampleApp or VisualBench"
12 } 13 }
13 14
14 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 15 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
15 16
16 source $SCRIPT_DIR/android_setup.sh 17 source $SCRIPT_DIR/android_setup.sh
17 source $SCRIPT_DIR/utils/setup_adb.sh 18 source $SCRIPT_DIR/utils/setup_adb.sh
18 19
19 forceRemoval="false" 20 forceRemoval="false"
20 installLauncher="false" 21 installLauncher="false"
21 installOptions="-r" 22 installOptions="-r"
23 app=""
22 24
23 for arg in ${APP_ARGS[@]} 25 for arg in ${APP_ARGS[@]}; do
24 do 26 if [[ "${arg}" == "-f" ]]; then
25 if [[ "${arg}" == "-f" ]];
26 then
27 forceRemoval="true" 27 forceRemoval="true"
28 elif [[ "${arg}" == "-h" ]]; 28 elif [[ "${arg}" == "-h" ]]; then
29 then
30 print_usage 29 print_usage
31 exit 30 exit
32 elif [[ "${arg}" == "-r" ]]; 31 elif [[ "${arg}" == "-r" ]]; then
33 then
34 echo "DEPRECATED: -r is now a no-op" 32 echo "DEPRECATED: -r is now a no-op"
35 else 33 elif [[ ${arg} == '-'* ]]; then
36 echo "ERROR: unrecognized option ${arg}" 34 echo "ERROR: unrecognized option ${arg}"
37 print_usage 35 print_usage
38 exit 1; 36 exit 1;
37 else
38 if [[ ${app} != "" ]]; then
39 echo "ERROR: app already defined ${app}"
40 exit 1;
41 else
42 app=${arg}
43 fi
39 fi 44 fi
40 done 45 done
41 46
47 if [[ ${app} == "" ]]; then
48 echo "defaulting to installing SampleApp."
49 app="SampleApp"
50 fi
51
52
42 if [[ "$forceRemoval" == "true" ]]; 53 if [[ "$forceRemoval" == "true" ]];
43 then 54 then
44 echo "Forcing removal of previously installed packages" 55 echo "Forcing removal of previously installed packages"
45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null 56 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null
46 fi 57 fi
47 58
48 echo "Installing Skia App from ${SKIA_OUT}/${BUILDTYPE}" 59 echo "Installing ${app} from ${SKIA_OUT}/${BUILDTYPE}"
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android /bin/SkiaAndroid.apk 60 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android /${app}/bin/${app}.apk
61
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/bin/android_launch_app » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698