Chromium Code Reviews| Index: build/android/pylib/junit/test_runner.py |
| diff --git a/build/android/pylib/junit/test_runner.py b/build/android/pylib/junit/test_runner.py |
| index 9a60c12a991abd28ed2514689a7aa394c0c9ed2e..d10d595aab4fd317ff6c1ea9d4ff94d506d2d3fe 100644 |
| --- a/build/android/pylib/junit/test_runner.py |
| +++ b/build/android/pylib/junit/test_runner.py |
| @@ -46,6 +46,11 @@ class JavaTestRunner(object): |
| # Add JVM arguments. |
| jvm_args = [] |
| + # TODO(mikecase): Set this property through GN. |
|
mikecase (-- gone --)
2016/07/31 04:21:09
Would like to replace this with a --robolectric-de
jbudorick
2016/08/01 13:52:04
That sgtm. Fine with leaving it in a separate CL,
|
| + jvm_args += [ |
| + '-Drobolectric.dependency.dir=%s' % |
| + os.path.join(constants.GetOutDirectory(), |
| + 'lib.java', 'third_party', 'robolectric')] |
| if self._coverage_dir: |
| if not os.path.exists(self._coverage_dir): |
| os.makedirs(self._coverage_dir) |