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

Unified Diff: build/android/pylib/base/environment_factory.py

Issue 2488453002: [android] Remove pylib/{remote,uirobot}. (Closed)
Patch Set: Remove remote_device_dummy_apk from rules.gni. Created 4 years, 1 month 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 | build/android/pylib/base/test_instance_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/base/environment_factory.py
diff --git a/build/android/pylib/base/environment_factory.py b/build/android/pylib/base/environment_factory.py
index f4fe935e22121606e799d9cad0bb199a6bd131db..d72bbeb2581fb6c43fb1077d6ac3dfe951b3dbe3 100644
--- a/build/android/pylib/base/environment_factory.py
+++ b/build/android/pylib/base/environment_factory.py
@@ -4,10 +4,6 @@
from pylib import constants
from pylib.local.device import local_device_environment
-try:
- from pylib.remote.device import remote_device_environment
-except ImportError:
- remote_device_environment = None
def CreateEnvironment(args, error_func):
@@ -15,7 +11,5 @@ def CreateEnvironment(args, error_func):
if args.command not in constants.LOCAL_MACHINE_TESTS:
return local_device_environment.LocalDeviceEnvironment(args, error_func)
# TODO(jbudorick) Add local machine environment.
- if args.environment == 'remote_device' and remote_device_environment:
- return remote_device_environment.RemoteDeviceEnvironment(args,
- error_func)
+
error_func('Unable to create %s environment.' % args.environment)
« no previous file with comments | « no previous file | build/android/pylib/base/test_instance_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698