• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
15package {
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
24cc_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: [
44        "--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_.*",
50    ],
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}
66