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

Unified Diff: platform_tools/android/bin/android_run_skia

Issue 15199005: Fix android_run_skia to work with multiple attached devices (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « platform_tools/android/bin/android_kill_skia ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/android/bin/android_run_skia
===================================================================
--- platform_tools/android/bin/android_run_skia (revision 9137)
+++ platform_tools/android/bin/android_run_skia (working copy)
@@ -35,13 +35,13 @@
if [[ "$USE_INTENT" == "true" ]];
then
- $ADB logcat -c
+ $ADB $SERIAL logcat -c
$ADB $SERIAL shell am broadcast -a com.skia.intent.action.LAUNCH_SKIA -n com.skia/.SkiaReceiver -e args "$APP_ARGS"
trap "echo \"Interrupt.\"" INT
- eval "($ADB logcat)"
+ eval "($ADB $SERIAL logcat)"
trap - INT
echo "Interrupt. Killing Skia process..."
- $SCRIPT_DIR/android_kill_skia
+ $SCRIPT_DIR/android_kill_skia $SERIAL
echo "Done."
else
$ADB $SERIAL shell skia_launcher $APP_ARGS
« no previous file with comments | « platform_tools/android/bin/android_kill_skia ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698