1//######################################################################## 2// Build FrameworksVcnTests package 3//######################################################################## 4 5package { 6 // See: http://go/android-license-faq 7 // A large-scale-change added 'default_applicable_licenses' to import 8 // all of the 'license_kinds' from "frameworks_base_license" 9 // to get the below license kinds: 10 // SPDX-license-identifier-Apache-2.0 11 default_applicable_licenses: ["frameworks_base_license"], 12} 13 14android_test { 15 name: "FrameworksVcnTests", 16 srcs: [ 17 "java/**/*.java", 18 "java/**/*.kt", 19 ], 20 platform_apis: true, 21 test_suites: ["device-tests"], 22 certificate: "platform", 23 static_libs: [ 24 "androidx.test.rules", 25 "frameworks-base-testutils", 26 "framework-protos", 27 "mockito-target-minus-junit4", 28 "net-tests-utils", 29 "platform-test-annotations", 30 "services.core", 31 ], 32 libs: [ 33 "android.test.runner", 34 "android.test.base", 35 "android.test.mock", 36 ], 37} 38