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.
45 lines
993 B
45 lines
993 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libteeui",
|
|
defaults: ["keystore_defaults"],
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
"src/button.cpp",
|
|
"src/font_rendering.cpp",
|
|
"src/label.cpp",
|
|
"src/utils.cpp",
|
|
],
|
|
static_libs: [
|
|
"libft2.nodep",
|
|
],
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
cflags: [
|
|
"-ffunction-sections",
|
|
],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libteeui_hal_support",
|
|
defaults: ["keystore_defaults"],
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
"src/evdev.cpp",
|
|
"src/generic_messages.cpp",
|
|
"src/msg_formatting.cpp",
|
|
"src/utils.cpp",
|
|
"src/weak_secure_input_device.cpp",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.confirmationui@1.0",
|
|
"android.hardware.keymaster@4.0",
|
|
"libhidlbase",
|
|
"libbase",
|
|
],
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
}
|