Chromium Code Reviews| Index: build/android/test_runner.py |
| diff --git a/build/android/test_runner.py b/build/android/test_runner.py |
| index cb2767e662415d00f49b3341f9a0109ec415c47d..3a8b975651f7fcd26966d87bdca666825bd8cbab 100755 |
| --- a/build/android/test_runner.py |
| +++ b/build/android/test_runner.py |
| @@ -469,6 +469,21 @@ def AddJUnitTestOptions(parser): |
| dest='test_suite', required=True, |
| help='JUnit test suite to run.') |
| + # These arguments are for Android Robolectric tests. |
| + parser.add_argument( |
| + '--android-manifest-path', |
| + help='Path to Android Manifest to configure Robolectric.') |
| + parser.add_argument( |
| + '--package-name', |
| + help='Default package name for Robolectric tests.') |
| + parser.add_argument( |
| + '--resource-dir', action='append', |
|
jbudorick
2017/03/30 19:11:44
nit: drop action onto the line below. The flags sh
mikecase (-- gone --)
2017/03/31 17:35:07
Done
|
| + dest='resource_dirs', default=[], |
| + help='Path to resource dir to configure Robolectric.') |
| + parser.add_argument( |
| + '--robolectric-runtime-deps-dir', |
| + help='Path to runtime deps for Robolectric.') |
| + |
| def AddLinkerTestOptions(parser): |