1package {
2    default_team: "trendy_team_fwk_nfc",
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6android_test {
7    name: "NfcNciInstrumentationTests",
8
9    certificate: "platform",
10
11    libs: [
12        "android.test.runner.stubs.system",
13        "android.test.base.stubs.system",
14        "android.test.mock.stubs.system",
15        "framework-nfc.impl",
16        "unsupportedappusage",
17    ],
18
19    static_libs: [
20        "androidx.test.core",
21        "androidx.test.rules",
22        "androidx.test.ext.junit",
23        "truth",
24        "androidx.test.espresso.core",
25        "androidx.test.espresso.intents-nodeps",
26    ],
27
28    // Include all test java files.
29    srcs: [
30        "src/**/*.java",
31        // TODO(b/263565193): Temp hack until NFC APK can link against module_current.
32        ":framework-nfc-updatable-sources",
33    ],
34
35    platform_apis: true,
36
37    test_suites: [
38        "general-tests",
39        "device-pixel-tests",
40        "device-platinum-tests",
41        "mts-nfc",
42    ],
43    min_sdk_version: "current",
44
45    instrumentation_for: "NfcNci",
46}
47