1package { 2 // http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // the below license kinds from "packages_apps_DeskClock_license": 5 // SPDX-license-identifier-Apache-2.0 6 default_applicable_licenses: ["packages_apps_DeskClock_license"], 7} 8 9android_test { 10 name: "DeskClockTests", 11 libs: [ 12 "android.test.runner", 13 "android.test.base", 14 ], 15 static_libs: [ 16 "junit", 17 "androidx.test.core", 18 "androidx.test.runner", 19 "androidx.test.rules", 20 ], 21 // Include all test java files. 22 srcs: ["src/**/*.java"], 23 platform_apis: true, 24 instrumentation_for: "DeskClock", 25} 26