3 # Copyright 2015 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
7 # Kill a running android webview shell.
9 # Assumes you have sourced the build/android/envsetup.sh script.
11 SHELL_PID_LINES
=$
(adb shell ps |
grep ' org.chromium.android_webview.shell')
12 VAL
=$
(echo "$SHELL_PID_LINES" |
wc -l)
13 if [ $VAL -lt 1 ] ; then
14 echo "Not running android webview shell."
16 SHELL_PID
=$
(echo $SHELL_PID_LINES |
awk '{print $2}')
17 if [ "$SHELL_PID" != "" ] ; then
19 adb shell
kill $SHELL_PID
22 echo "Android webview shell does not appear to be running."