Janis Danisevskis | 672d983 | 2020-12-09 13:25:36 -0800 | [diff] [blame] | 1 | // Copyright 2020, The Android Open Source Project |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Bob Badour | 4c7858c | 2021-02-12 15:40:29 -0800 | [diff] [blame] | 15 | package { |
| 16 | // See: http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // all of the 'license_kinds' from "system_security_license" |
| 19 | // to get the below license kinds: |
| 20 | // SPDX-license-identifier-Apache-2.0 |
| 21 | default_applicable_licenses: ["system_security_license"], |
| 22 | } |
| 23 | |
Janis Danisevskis | 672d983 | 2020-12-09 13:25:36 -0800 | [diff] [blame] | 24 | aidl_interface { |
| 25 | name: "android.security.attestationmanager", |
Janis Danisevskis | 7a1cf38 | 2020-11-20 11:22:14 -0800 | [diff] [blame] | 26 | srcs: [ "android/security/attestationmanager/*.aidl", ], |
Shawn Willden | 708744a | 2020-12-11 13:05:27 +0000 | [diff] [blame] | 27 | imports: [ "android.hardware.security.keymint" ], |
Janis Danisevskis | 672d983 | 2020-12-09 13:25:36 -0800 | [diff] [blame] | 28 | unstable: true, |
| 29 | backend: { |
| 30 | java: { |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 31 | platform_apis: true, |
| 32 | srcs_available: true, |
Janis Danisevskis | 672d983 | 2020-12-09 13:25:36 -0800 | [diff] [blame] | 33 | }, |
| 34 | rust: { |
| 35 | enabled: true, |
| 36 | }, |
| 37 | }, |
| 38 | } |
Hasini Gunasinghe | 594caa3 | 2020-11-12 20:25:13 +0000 | [diff] [blame] | 39 | |
| 40 | aidl_interface { |
Janis Danisevskis | 9f10a6a | 2021-01-18 16:45:21 +0000 | [diff] [blame] | 41 | name: "android.security.authorization", |
| 42 | srcs: [ "android/security/authorization/*.aidl" ], |
Janis Danisevskis | c3a496b | 2021-01-05 10:37:22 -0800 | [diff] [blame] | 43 | imports: [ |
| 44 | "android.hardware.security.keymint", |
| 45 | "android.hardware.security.secureclock", |
| 46 | ], |
Hasini Gunasinghe | 594caa3 | 2020-11-12 20:25:13 +0000 | [diff] [blame] | 47 | unstable: true, |
| 48 | backend: { |
| 49 | java: { |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 50 | platform_apis: true, |
| 51 | srcs_available: true, |
Hasini Gunasinghe | 594caa3 | 2020-11-12 20:25:13 +0000 | [diff] [blame] | 52 | }, |
| 53 | rust: { |
| 54 | enabled: true, |
| 55 | }, |
| 56 | ndk: { |
| 57 | enabled: true, |
| 58 | } |
| 59 | }, |
| 60 | } |
| 61 | |
Janis Danisevskis | 7a1cf38 | 2020-11-20 11:22:14 -0800 | [diff] [blame] | 62 | aidl_interface { |
| 63 | name: "android.security.apc", |
| 64 | srcs: [ "android/security/apc/*.aidl" ], |
| 65 | unstable: true, |
| 66 | backend: { |
| 67 | java: { |
| 68 | enabled: true, |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 69 | srcs_available: true, |
Janis Danisevskis | 7a1cf38 | 2020-11-20 11:22:14 -0800 | [diff] [blame] | 70 | }, |
| 71 | rust: { |
| 72 | enabled: true, |
| 73 | }, |
| 74 | }, |
| 75 | } |
Joel Galenson | de386b4 | 2020-09-30 10:53:05 -0700 | [diff] [blame] | 76 | |
| 77 | aidl_interface { |
| 78 | name: "android.security.compat", |
| 79 | srcs: [ "android/security/compat/*.aidl" ], |
Joel Galenson | f21c002 | 2020-12-11 14:37:52 -0800 | [diff] [blame] | 80 | imports: [ |
| 81 | "android.hardware.security.keymint", |
| 82 | "android.hardware.security.secureclock", |
| 83 | "android.hardware.security.sharedsecret", |
| 84 | ], |
Joel Galenson | de386b4 | 2020-09-30 10:53:05 -0700 | [diff] [blame] | 85 | unstable: true, |
| 86 | backend: { |
| 87 | java: { |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 88 | platform_apis: true, |
| 89 | srcs_available: true, |
Joel Galenson | de386b4 | 2020-09-30 10:53:05 -0700 | [diff] [blame] | 90 | }, |
| 91 | rust: { |
| 92 | enabled: true, |
| 93 | }, |
| 94 | ndk: { |
| 95 | enabled: true, |
| 96 | } |
| 97 | }, |
| 98 | } |
Max Bires | 148c08e | 2020-10-13 13:41:41 -0700 | [diff] [blame] | 99 | |
| 100 | aidl_interface { |
| 101 | name: "android.security.remoteprovisioning", |
| 102 | srcs: [ "android/security/remoteprovisioning/*.aidl" ], |
| 103 | imports: [ |
| 104 | "android.hardware.security.keymint", |
| 105 | ], |
| 106 | unstable: true, |
| 107 | backend: { |
| 108 | java: { |
Max Bires | 148c08e | 2020-10-13 13:41:41 -0700 | [diff] [blame] | 109 | platform_apis: true, |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 110 | srcs_available: true, |
Max Bires | 148c08e | 2020-10-13 13:41:41 -0700 | [diff] [blame] | 111 | }, |
| 112 | ndk: { |
| 113 | enabled: true, |
| 114 | }, |
| 115 | rust: { |
| 116 | enabled: true, |
| 117 | }, |
| 118 | }, |
| 119 | } |
Hasini Gunasinghe | d31e437 | 2021-01-26 21:25:12 +0000 | [diff] [blame] | 120 | |
| 121 | aidl_interface { |
Janis Danisevskis | 34a0cf2 | 2021-03-08 09:19:03 -0800 | [diff] [blame] | 122 | name: "android.security.maintenance", |
| 123 | srcs: [ "android/security/maintenance/*.aidl" ], |
Janis Danisevskis | ddd6e75 | 2021-02-22 18:46:55 -0800 | [diff] [blame] | 124 | imports: [ |
| 125 | "android.system.keystore2", |
| 126 | ], |
Hasini Gunasinghe | d31e437 | 2021-01-26 21:25:12 +0000 | [diff] [blame] | 127 | unstable: true, |
| 128 | backend: { |
| 129 | java: { |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 130 | platform_apis: true, |
| 131 | srcs_available: true, |
Hasini Gunasinghe | d31e437 | 2021-01-26 21:25:12 +0000 | [diff] [blame] | 132 | }, |
| 133 | rust: { |
| 134 | enabled: true, |
| 135 | }, |
| 136 | ndk: { |
| 137 | enabled: true, |
| 138 | } |
| 139 | }, |
| 140 | } |
Janis Danisevskis | c0e7dfb | 2021-01-20 10:54:38 -0800 | [diff] [blame] | 141 | |
| 142 | aidl_interface { |
| 143 | name: "android.security.vpnprofilestore", |
| 144 | srcs: [ "android/security/vpnprofilestore/*.aidl" ], |
| 145 | unstable: true, |
| 146 | backend: { |
| 147 | java: { |
Janis Danisevskis | aedee5d | 2021-03-15 15:54:50 -0700 | [diff] [blame^] | 148 | platform_apis: true, |
| 149 | srcs_available: true, |
Janis Danisevskis | c0e7dfb | 2021-01-20 10:54:38 -0800 | [diff] [blame] | 150 | }, |
| 151 | rust: { |
| 152 | enabled: true, |
| 153 | }, |
| 154 | }, |
| 155 | } |
| 156 | |