aboutsummaryrefslogtreecommitdiff
path: root/test_defs.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'test_defs.bzl')
-rw-r--r--test_defs.bzl20
1 files changed, 5 insertions, 15 deletions
diff --git a/test_defs.bzl b/test_defs.bzl
index 6f2308877..d16ad3660 100644
--- a/test_defs.bzl
+++ b/test_defs.bzl
@@ -59,21 +59,11 @@ def GenRobolectricTests(
test_javacopts = None,
functional = True,
manifest_values = None):
- deps = (deps or []) + ["//:android_local_test_exports"]
- _GenTests(
- native.android_library,
- native.android_local_test,
- name,
- srcs,
- deps,
- test_only_deps,
- plugins,
- javacopts,
- lib_javacopts,
- test_javacopts,
- functional,
- test_kwargs = {"manifest_values": manifest_values},
- )
+ # TODO(ronshapiro): enable these with these instructions:
+ # https://docs.bazel.build/versions/master/be/android.html#android_local_test_examples
+ # We probably want to import all of Robolectric's dependencies into bazel-common because there
+ # are some differences (i.e. we both provide Guava).
+ pass
def _GenTests(
library_rule_type,