1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "packages_providers_CalendarProvider_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: [ 8 "packages_providers_CalendarProvider_license", 9 ], 10} 11 12android_test { 13 name: "CalendarProviderTests", 14 // Include all test java files. 15 srcs: ["src/**/*.java"], 16 platform_apis: true, 17 test_suites: ["device-tests"], 18 static_libs: [ 19 "androidx.test.rules", 20 "calendar-common", 21 "junit", 22 ], 23 libs: [ 24 "ext", 25 "android.test.runner", 26 "android.test.base", 27 "android.test.mock", 28 ], 29 instrumentation_for: "CalendarProvider", 30} 31