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

Unified Diff: build/android/emulator.py

Issue 10693110: [android] Split top-level scripts and libraries from build/android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added __init__.py and enable_asserts.py. Created 8 years, 5 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
Index: build/android/emulator.py
diff --git a/build/android/emulator.py b/build/android/emulator.py
index 224d31ba6f41273d8673cbb88db0748d4f79aa57..e08b7604b9264e974e4487b58fa948ffd43d39e6 100755
--- a/build/android/emulator.py
+++ b/build/android/emulator.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+#
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -18,13 +19,13 @@ import subprocess
import sys
import time
-import android_commands
+from pylib import android_commands
+from pylib import cmd_helper
# adb_interface.py is under ../../third_party/android_testrunner/
sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), '..',
'..', 'third_party', 'android_testrunner'))
import adb_interface
-import cmd_helper
import errors
import run_command

Powered by Google App Engine
This is Rietveld 408576698