aboutsummaryrefslogtreecommitdiff
path: root/test/rules/android_library_extensibility/BUILD
blob: 99706cef6b3895f43847aa291d2f4a710dac837a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
load(":custom_android_library.bzl", "custom_android_library")
load(":test.bzl", "custom_android_library_test")

package(
    default_applicable_licenses = ["//:license"],
    default_visibility =
        ["//:__subpackages__"],
)

licenses(["notice"])

custom_android_library(
    name = "custom_android_library",
    testonly = True,
    key = "test_key",
)

custom_android_library_test(
    name = "custom_android_library_test",
    lib = ":custom_android_library",
)

test_suite(
    name = "integration_tests",
    tests = [
        ":custom_android_library_test",
    ],
)