• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load(":custom_android_library.bzl", "custom_android_library")
2load(":test.bzl", "custom_android_library_test")
3
4package(
5    default_applicable_licenses = ["//:license"],
6    default_visibility =
7        ["//:__subpackages__"],
8)
9
10licenses(["notice"])
11
12custom_android_library(
13    name = "custom_android_library",
14    testonly = True,
15    key = "test_key",
16)
17
18custom_android_library_test(
19    name = "custom_android_library_test",
20    lib = ":custom_android_library",
21)
22
23test_suite(
24    name = "integration_tests",
25    tests = [
26        ":custom_android_library_test",
27    ],
28)
29