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

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

Issue 2502363005: [android] Stop using isolate.py for data dependency management. (RELAND) (Closed)
Patch Set: fixed: moved the runtime_deps file. 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 | « build/android/gyp/create_test_runner_script.py ('k') | build/android/pylib/gtest/gtest_test_instance.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20b99d63f9322137862aa02295db1ba05dc8cd3f..3ce77f9d20dfccead081d541787b2fc4901288ae 100644
--- a/build/android/pylib/base/test_instance_factory.py
+++ b/build/android/pylib/base/test_instance_factory.py
@@ -7,17 +7,17 @@ from pylib.instrumentation import instrumentation_test_instance
from pylib.junit import junit_test_instance
from pylib.monkey import monkey_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 == 'monkey':
« no previous file with comments | « build/android/gyp/create_test_runner_script.py ('k') | build/android/pylib/gtest/gtest_test_instance.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698