aboutsummaryrefslogtreecommitdiff
path: root/test/rules/android_library/BUILD
blob: 866a4549f7ed25c523028335ff46507aa60bd272 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
load(":custom_android_library.bzl", "custom_android_library")
load(":test.bzl", "custom_android_library_test")
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

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",
    ],
)