Seth Moore | 3a81062 | 2022-11-04 17:39:05 +0000 | [diff] [blame] | 1 | package { |
| 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 "hardware_interfaces_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 8 | } |
| 9 | |
| 10 | aidl_interface { |
| 11 | name: "android.hardware.security.rkp", |
| 12 | vendor_available: true, |
| 13 | srcs: [ |
| 14 | // This HAL was originally part of keymint. |
| 15 | "android/hardware/security/keymint/*.aidl", |
| 16 | |
| 17 | // in the future |
| 18 | // "android/hardware/security/rkp/*.aidl", |
| 19 | ], |
| 20 | stability: "vintf", |
| 21 | backend: { |
| 22 | java: { |
| 23 | min_sdk_version: "33", |
Seth Moore | 557a1db | 2022-11-21 17:15:37 -0800 | [diff] [blame] | 24 | apex_available: [ |
| 25 | "//apex_available:platform", |
| 26 | "com.android.rkpd", |
| 27 | ], |
Cole Faust | 2424cc0 | 2024-01-10 12:30:37 -0800 | [diff] [blame] | 28 | lint: { |
| 29 | baseline_filename: "lint-baseline.xml", |
| 30 | }, |
Seth Moore | 3a81062 | 2022-11-04 17:39:05 +0000 | [diff] [blame] | 31 | }, |
| 32 | rust: { |
| 33 | enabled: true, |
Alice Wang | d6281e7 | 2023-08-25 12:05:13 +0000 | [diff] [blame] | 34 | apex_available: [ |
| 35 | "//apex_available:platform", |
| 36 | "com.android.virt", |
| 37 | ], |
Seth Moore | 3a81062 | 2022-11-04 17:39:05 +0000 | [diff] [blame] | 38 | }, |
| 39 | }, |
| 40 | versions_with_info: [ |
| 41 | { |
| 42 | version: "1", |
| 43 | }, |
| 44 | { |
| 45 | version: "2", |
| 46 | }, |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 47 | { |
| 48 | version: "3", |
| 49 | imports: [], |
| 50 | }, |
| 51 | |
Seth Moore | 3a81062 | 2022-11-04 17:39:05 +0000 | [diff] [blame] | 52 | ], |
Alex Buynytskyy | ec1198d | 2023-04-04 19:52:27 +0000 | [diff] [blame] | 53 | frozen: true, |
Seth Moore | 3a81062 | 2022-11-04 17:39:05 +0000 | [diff] [blame] | 54 | } |