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 "frameworks_base_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["frameworks_base_license"], 8} 9 10android_test { 11 name: "mediaroutertest", 12 team: "trendy_team_android_media_solutions", 13 14 srcs: ["**/*.java"], 15 16 libs: [ 17 "android.test.runner.stubs.system", 18 "android.test.base.stubs.system", 19 ], 20 21 static_libs: [ 22 "androidx.test.core", 23 "androidx.test.ext.truth", 24 "androidx.test.rules", 25 "compatibility-device-util-axt", 26 "mockito-target-minus-junit4", 27 "testng", 28 "truth", 29 ], 30 test_suites: ["general-tests"], 31 platform_apis: true, 32 certificate: "platform", 33} 34