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

Unified Diff: build/android/adb_reverse_forwarder.py

Issue 12262011: [Android] Fix Android port forwarder command line tool (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_reverse_forwarder.py
diff --git a/build/android/adb_reverse_forwarder.py b/build/android/adb_reverse_forwarder.py
index 0bacdc500fe96326a0671506061147c6ba14da5b..ff6d77b159cc401c7108ec9369fc82b5d67097e6 100755
--- a/build/android/adb_reverse_forwarder.py
+++ b/build/android/adb_reverse_forwarder.py
@@ -17,6 +17,7 @@ import time
from pylib import android_commands, forwarder
from pylib.utils import run_tests_helper
+from pylib.valgrind_tools import CreateTool
def main(argv):
@@ -53,9 +54,10 @@ def main(argv):
sys.exit(1)
adb = android_commands.AndroidCommands(options.device)
+ tool = CreateTool(None, adb)
forwarder_instance = forwarder.Forwarder(adb, options.build_type)
try:
- forwarder_instance.Run(port_pairs, None, options.host)
+ forwarder_instance.Run(port_pairs, tool, options.host)
while True:
time.sleep(60)
except KeyboardInterrupt:
« 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