blob: bf2167571e2a3c4c685d3c36ed4d78bc82e8c057 [file] [log] [blame]
Janis Danisevskis7a1cf382020-11-20 11:22:14 -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
Bob Badour4c7858c2021-02-12 15:40:29 -080015package {
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 Danisevskis7a1cf382020-11-20 11:22:14 -080024cc_library {
25 name: "libkeystore2_apc_compat",
26 srcs: [
27 "apc_compat.cpp",
28 ],
29 shared_libs: [
30 "android.hardware.confirmationui@1.0",
31 "libbase",
32 "libhidlbase",
33 "libutils",
34 ],
35}
36
37rust_bindgen {
38 name: "libkeystore2_apc_compat_bindgen",
39 wrapper_src: "apc_compat.hpp",
40 crate_name: "keystore2_apc_compat_bindgen",
41 source_stem: "bindings",
42
43 bindgen_flags: [
Joel Galenson915d3ea2021-04-19 09:02:41 -070044 "--allowlist-function=tryGetUserConfirmationService",
45 "--allowlist-function=promptUserConfirmation",
46 "--allowlist-function=abortUserConfirmation",
47 "--allowlist-function=closeUserConfirmationService",
48 "--allowlist-var=INVALID_SERVICE_HANDLE",
49 "--allowlist-var=APC_COMPAT_.*",
Janis Danisevskis7a1cf382020-11-20 11:22:14 -080050 ],
51}
52
53rust_library {
54 name: "libkeystore2_apc_compat-rust",
55 crate_name: "keystore2_apc_compat",
56 srcs: [
57 "apc_compat.rs",
58 ],
59 rustlibs: [
60 "libkeystore2_apc_compat_bindgen",
61 ],
62 shared_libs: [
63 "libkeystore2_apc_compat",
64 ],
65}