You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.9 KiB
66 lines
1.9 KiB
// Copyright 2020, The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "system_security_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_security_license"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libkeystore2_apc_compat",
|
|
srcs: [
|
|
"apc_compat.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.confirmationui@1.0",
|
|
"libbase",
|
|
"libhidlbase",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
rust_bindgen {
|
|
name: "libkeystore2_apc_compat_bindgen",
|
|
wrapper_src: "apc_compat.hpp",
|
|
crate_name: "keystore2_apc_compat_bindgen",
|
|
source_stem: "bindings",
|
|
|
|
bindgen_flags: [
|
|
"--allowlist-function=tryGetUserConfirmationService",
|
|
"--allowlist-function=promptUserConfirmation",
|
|
"--allowlist-function=abortUserConfirmation",
|
|
"--allowlist-function=closeUserConfirmationService",
|
|
"--allowlist-var=INVALID_SERVICE_HANDLE",
|
|
"--allowlist-var=APC_COMPAT_.*",
|
|
],
|
|
}
|
|
|
|
rust_library {
|
|
name: "libkeystore2_apc_compat-rust",
|
|
crate_name: "keystore2_apc_compat",
|
|
srcs: [
|
|
"apc_compat.rs",
|
|
],
|
|
rustlibs: [
|
|
"libkeystore2_apc_compat_bindgen",
|
|
],
|
|
shared_libs: [
|
|
"libkeystore2_apc_compat",
|
|
],
|
|
}
|