1package {
2    default_team: "trendy_team_fwk_nfc",
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6android_test {
7    name: "NfcTestCases",
8    platform_apis: true,
9    sdk_version: "core_current",
10    libs: [
11        "framework-nfc.impl",
12        "framework",
13        "framework-res",
14        "android.test.runner.stubs.system",
15        "android.test.base.stubs.system",
16        "flag-junit",
17        "platform-test-annotations",
18        "testables",
19        "testng",
20        "unsupportedappusage",
21    ],
22
23    static_libs: [
24        "androidx.test.ext.junit",
25        "androidx.test.uiautomator_uiautomator",
26        "flag-junit",
27        "androidx.test.core",
28        "androidx.test.rules",
29        "androidx.test.ext.junit",
30        "com.android.nfc.flags-aconfig",
31        "frameworks-base-testutils",
32        "truth",
33        "androidx.annotation_annotation",
34        "androidx.appcompat_appcompat",
35        "com.google.android.material_material",
36        "nfc-event-log-proto",
37        "flag-junit",
38        "platform-test-annotations",
39        "testables",
40        "compatibility-common-util-devicesidelib",
41        "compatibility-device-util-axt",
42    ],
43
44    // Include all test java files.
45    srcs: [
46        "src/**/*.java",
47    ],
48
49    min_sdk_version: "current",
50    test_suites: [
51        "general-tests",
52        "mts-nfc",
53    ],
54
55}
56