mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
This feature flag also needs some work in implementing the corresponding access control rules. Otherwise, the CTS tests will fail. Re-enable this once that is fully implemented. Bug: 289193458 Change-Id: I426bce4db0715c5136c15ddf68afdcf2966cb7af Test: atest OmapiTest
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.secure_element-service.example",
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
installable: false, // installed in APEX
|
|
|
|
stl: "c++_static",
|
|
shared_libs: [
|
|
"libbinder_ndk",
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"android.hardware.secure_element-V1-ndk",
|
|
"libbase",
|
|
],
|
|
srcs: [
|
|
"main.cpp",
|
|
],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "secure_element.rc",
|
|
src: "secure_element.rc",
|
|
installable: false,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "secure_element.xml",
|
|
src: "secure_element.xml",
|
|
sub_dir: "vintf",
|
|
installable: false,
|
|
}
|
|
|
|
apex {
|
|
name: "com.android.hardware.secure_element",
|
|
manifest: "apex_manifest.json",
|
|
file_contexts: "apex_file_contexts",
|
|
key: "com.android.hardware.key",
|
|
certificate: ":com.android.hardware.certificate",
|
|
vendor: true,
|
|
updatable: false,
|
|
|
|
binaries: [
|
|
"android.hardware.secure_element-service.example",
|
|
],
|
|
prebuilts: [
|
|
"secure_element.rc",
|
|
"secure_element.xml",
|
|
// TODO (b/289193458): Add this back when access control is implemented for cuttlefish.
|
|
// "android.hardware.se.omapi.ese.prebuilt.xml", // <feature>
|
|
],
|
|
}
|