aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/bazel/android/BUILD
blob: 26c155a5686c93c1e2b26d2b4977b61ef16095ec (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
filegroup(
    name = "srcs",
    srcs = glob(["**"]),
    visibility = ["//src/test/shell/bazel:__pkg__"],
)

sh_test(
    name = "android_integration_test",
    size = "large",
    srcs = ["android_integration_test.sh"],
    data = [
        "//src/test/shell/bazel:test-deps",
        # These targets should point to a filegroup with one single item: the
        # root directory of the NDK and the SDK. Note that this is incorrect,
        # but since they contain files with names that are not legal Bazel
        # labels, there isn't really a better option.
        "//external:android_ndk_for_testing",
        "//external:android_sdk_for_testing",
        "//src/tools/android/java/com/google/devtools/build/android:AarGeneratorAction_deploy.jar",
        "//src/tools/android/java/com/google/devtools/build/android:AndroidResourceProcessingAction_deploy.jar",
        "//src/tools/android/java/com/google/devtools/build/android:ResourceShrinkerAction_deploy.jar",
        "//src/tools/android/java/com/google/devtools/build/android/incrementaldeployment:srcs",
        "//src/tools/android/java/com/google/devtools/build/android/ziputils:mapper_deploy.jar",
        "//src/tools/android/java/com/google/devtools/build/android/ziputils:reducer_deploy.jar",
    ],
)