• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5android_test {
6    name: "NfcNciInstrumentationTests",
7
8    certificate: "platform",
9
10    libs: [
11        "android.test.runner",
12        "android.test.base",
13        "android.test.mock",
14    ],
15
16    static_libs: [
17        "androidx.test.core",
18        "androidx.test.rules",
19        "androidx.test.ext.junit",
20        "truth-prebuilt",
21    ],
22
23    // Include all test java files.
24    srcs: [
25      "src/**/*.java",
26    ],
27
28    platform_apis: true,
29
30    test_suites: ["device-tests"],
31
32    instrumentation_for: "NfcNci",
33}
34
35