summaryrefslogtreecommitdiff
path: root/tests/Internal/Android.bp
blob: e233fed7e785a2d3c7d43c9771cf98bf7d70fb37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
android_test {
    name: "InternalTests",
    proto: {
        type: "nano",
    },
    // Include some source files directly to be able to access package members
    srcs: ["src/**/*.java"],
    libs: ["android.test.runner"],
    static_libs: [
        "junit",
        "androidx.test.rules",
        "mockito-target-minus-junit4",
        "truth-prebuilt",
    ],
    java_resource_dirs: ["res"],
    certificate: "platform",
    platform_apis: true,
    test_suites: ["device-tests"],
}