summaryrefslogtreecommitdiffstats
path: root/tests/unit/Android.bp
blob: d1556ddf18830db14c5da673c55aaa3f258c80af (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
29
30
31
32
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

android_test {
    name: "NfcNciInstrumentationTests",

    certificate: "platform",

    libs: [
        "android.test.runner",
        "android.test.base",
        "android.test.mock",
    ],

    static_libs: [
        "androidx.test.core",
        "androidx.test.rules",
        "androidx.test.ext.junit",
        "mockito-target",
        "truth-prebuilt",
    ],

    // Include all test java files.
    srcs: ["src/**/*.java"],

    platform_apis: true,

    test_suites: ["device-tests"],

    instrumentation_for: "NfcNci",
}