summaryrefslogtreecommitdiff
path: root/tests/Internal/Android.bp
blob: 9da17db6a57328b62387497503d840790e89297b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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",
        "platform-test-annotations",
    ],
    java_resource_dirs: ["res"],
    certificate: "platform",
    platform_apis: true,
    test_suites: ["device-tests"],
}