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 "mockito-target", 21 "truth-prebuilt", 22 ], 23 24 // Include all test java files. 25 srcs: ["src/**/*.java"], 26 27 platform_apis: true, 28 29 test_suites: ["device-tests"], 30 31 instrumentation_for: "NfcNci", 32} 33