| Index: build/android/pylib/instrumentation/test_runner.py | 
| diff --git a/build/android/pylib/instrumentation/test_runner.py b/build/android/pylib/instrumentation/test_runner.py | 
| index 9e6e62e0b3a501881a377b06a0b16352d125b1d4..c1343260c772cb669c1b4a147f7156e54aa101f6 100644 | 
| --- a/build/android/pylib/instrumentation/test_runner.py | 
| +++ b/build/android/pylib/instrumentation/test_runner.py | 
| @@ -66,13 +66,15 @@ class TestRunner(base_test_runner.BaseTestRunner): | 
| -  tool: Name of the Valgrind tool. | 
| -  wait_for_debugger: blocks until the debugger is connected. | 
| -  disable_assertions: Whether to disable java assertions on the device. | 
| +      -  push_deps: If True, push all dependencies to the device. | 
| device: Attached android device. | 
| shard_index: Shard index. | 
| test_pkg: A TestPackage object. | 
| ports_to_forward: A list of port numbers for which to set up forwarders. | 
| Can be optionally requested by a test case. | 
| """ | 
| -    super(TestRunner, self).__init__(device, options.tool, options.build_type) | 
| +    super(TestRunner, self).__init__(device, options.tool, options.build_type, | 
| +                                     options.push_deps) | 
| self._lighttp_port = constants.LIGHTTPD_RANDOM_PORT_FIRST + shard_index | 
|  | 
| self.build_type = options.build_type | 
|  |