blob: 0d05dfec1c61479ddbabb096e29443aec3e71cdf [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 {
31 name: "android.security.authorizations",
32 srcs: [ "android/security/authorizations/*.aidl" ],
33 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" ],
65 imports: [ "android.hardware.security.keymint" ],
66 unstable: true,
67 backend: {
68 java: {
69 sdk_version: "module_current",
70 },
71 rust: {
72 enabled: true,
73 },
74 ndk: {
75 enabled: true,
76 }
77 },
78}