blob: 3fd05807624350cbb45e97c91568313f8cbb99d5 [file] [log] [blame]
Janis Danisevskis672d9832020-12-09 13:25:36 -08001// 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
15aidl_interface {
16 name: "android.security.attestationmanager",
Janis Danisevskis7a1cf382020-11-20 11:22:14 -080017 srcs: [ "android/security/attestationmanager/*.aidl", ],
Shawn Willden708744a2020-12-11 13:05:27 +000018 imports: [ "android.hardware.security.keymint" ],
Janis Danisevskis672d9832020-12-09 13:25:36 -080019 unstable: true,
20 backend: {
21 java: {
22 sdk_version: "module_current",
23 },
24 rust: {
25 enabled: true,
26 },
27 },
28}
Hasini Gunasinghe594caa32020-11-12 20:25:13 +000029
30aidl_interface {
Janis Danisevskis9f10a6a2021-01-18 16:45:21 +000031 name: "android.security.authorization",
32 srcs: [ "android/security/authorization/*.aidl" ],
Hasini Gunasinghe594caa32020-11-12 20:25:13 +000033 imports: [ "android.hardware.security.keymint" ],
34 unstable: true,
35 backend: {
36 java: {
37 sdk_version: "module_current",
38 },
39 rust: {
40 enabled: true,
41 },
42 ndk: {
43 enabled: true,
44 }
45 },
46}
47
Janis Danisevskis7a1cf382020-11-20 11:22:14 -080048aidl_interface {
49 name: "android.security.apc",
50 srcs: [ "android/security/apc/*.aidl" ],
51 unstable: true,
52 backend: {
53 java: {
54 enabled: true,
55 },
56 rust: {
57 enabled: true,
58 },
59 },
60}
Joel Galensonde386b42020-09-30 10:53:05 -070061
62aidl_interface {
63 name: "android.security.compat",
64 srcs: [ "android/security/compat/*.aidl" ],
Joel Galensonf21c0022020-12-11 14:37:52 -080065 imports: [
66 "android.hardware.security.keymint",
67 "android.hardware.security.secureclock",
68 "android.hardware.security.sharedsecret",
69 ],
Joel Galensonde386b42020-09-30 10:53:05 -070070 unstable: true,
71 backend: {
72 java: {
73 sdk_version: "module_current",
74 },
75 rust: {
76 enabled: true,
77 },
78 ndk: {
79 enabled: true,
80 }
81 },
82}