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. |
jbudorick
2016/08/03 15:32:29
Can you add a note about when you plan to address
mikecase (-- gone --)
2016/08/05 03:17:07
Added more detail desc. Not blocked on anything, j
|
+ 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) |