1// AOSP test certificate 2package { 3 // See: http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // all of the 'license_kinds' from "build_make_license" 6 // to get the below license kinds: 7 // legacy_restricted 8 default_applicable_licenses: ["build_make_license"], 9} 10 11android_app_certificate { 12 name: "aosp-testkey", 13 certificate: "testkey", 14} 15 16// Certificate for CTS tests that rely on UICC hardware conforming to the 17// updated CTS UICC card specification introduced in 2021. See 18// //cts/tests/tests/carrierapi/Android.bp for more details. 19android_app_certificate { 20 name: "cts-uicc-2021-testkey", 21 certificate: "cts_uicc_2021", 22} 23 24// Google-owned certificate for CTS testing, since we can't trust arbitrary keys 25// on release devices. 26prebuilt_etc { 27 name: "fsverity-release-cert-der", 28 src: "fsverity-release.x509.der", 29 sub_dir: "security/fsverity", 30 filename_from_src: true, 31} 32