• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("@rules_python//python:py_test.bzl", "py_test")
2
3py_test(
4    name = "r8_integration_test",
5    srcs = ["r8_integration_test.py"],
6    data = [
7        "//test/rules/android_binary_internal/r8_integration/java/com/basicapp:basic_app_R8_no_shrink",
8        "//test/rules/android_binary_internal/r8_integration/java/com/basicapp:basic_app_R8_shrink",
9        "//test/rules/android_binary_internal/r8_integration/java/com/basicapp:basic_app_no_R8",
10        "@androidsdk-supplemental//:dexdump",
11    ],
12)
13