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

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

Issue 2492123002: [android] Stop using isolate.py for data dependency management. (Closed)
Patch Set: add runtime_deps to data 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
Index: build/android/pylib/base/test_instance_factory.py
diff --git a/build/android/pylib/base/test_instance_factory.py b/build/android/pylib/base/test_instance_factory.py
index 129bd7f2f62a65b636ae92723a2071788d86332f..3658ab69a17b19b3b469b3ac7031720bf6b52775 100644
--- a/build/android/pylib/base/test_instance_factory.py
+++ b/build/android/pylib/base/test_instance_factory.py
@@ -6,17 +6,17 @@ from pylib.gtest import gtest_test_instance
from pylib.instrumentation import instrumentation_test_instance
from pylib.junit import junit_test_instance
from pylib.perf import perf_test_instance
-from pylib.utils import isolator
+from pylib.utils import device_dependencies
def CreateTestInstance(args, error_func):
if args.command == 'gtest':
return gtest_test_instance.GtestTestInstance(
- args, isolator.Isolator(), error_func)
+ args, device_dependencies.GetDataDependencies, error_func)
elif args.command == 'instrumentation':
return instrumentation_test_instance.InstrumentationTestInstance(
- args, isolator.Isolator(), error_func)
+ args, device_dependencies.GetDataDependencies, error_func)
elif args.command == 'junit':
return junit_test_instance.JunitTestInstance(args, error_func)
elif args.command == 'perf':

Powered by Google App Engine
This is Rietveld 408576698