Index: build/android/pylib/gtest/test_runner.py |
diff --git a/build/android/pylib/gtest/test_runner.py b/build/android/pylib/gtest/test_runner.py |
index 4c1476241c0ce3567a34a79578fcbe8393f21f91..de3e6c31c2fad73a7506943261412461a073381c 100644 |
--- a/build/android/pylib/gtest/test_runner.py |
+++ b/build/android/pylib/gtest/test_runner.py |
@@ -246,6 +246,7 @@ class TestRunner(base_test_runner.BaseTestRunner): |
tool_name: Name of the Valgrind tool. |
build_type: 'Release' or 'Debug'. |
in_webkit_checkout: Whether the suite is being run from a WebKit checkout. |
+ push_deps: If True, push all dependencies to the device. |
test_apk_package_name: Apk package name for tests running in APKs. |
test_activity_name: Test activity to invoke for APK tests. |
command_line_file: Filename to use to pass arguments to tests. |
@@ -253,9 +254,9 @@ class TestRunner(base_test_runner.BaseTestRunner): |
def __init__(self, device, test_suite, test_arguments, timeout, |
cleanup_test_files, tool_name, build_type, |
- in_webkit_checkout, test_apk_package_name=None, |
+ in_webkit_checkout, push_deps, test_apk_package_name=None, |
test_activity_name=None, command_line_file=None): |
- super(TestRunner, self).__init__(device, tool_name, build_type) |
+ super(TestRunner, self).__init__(device, tool_name, build_type, push_deps) |
self._running_on_emulator = self.device.startswith('emulator') |
self._test_arguments = test_arguments |
self.in_webkit_checkout = in_webkit_checkout |