mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-03 12:07:58 +00:00
This change implements a basic HAL and server-side functionality to test the HIDL implementation of safe unions. Bug: 79878527 Test: Ran make, new tests in hidl_test/ pass successfully (included in a separate CL). Change-Id: Ia420137bc1dc0a188e04176081c7f5418e74449c
22 lines
535 B
Plaintext
22 lines
535 B
Plaintext
cc_library {
|
|
name: "android.hardware.tests.safeunion@1.0-impl",
|
|
defaults: ["hidl_defaults"],
|
|
relative_install_path: "hw",
|
|
srcs: [
|
|
"SafeUnion.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
|
|
// These are static libs only for testing purposes and portability. Shared
|
|
// libs should be used on device.
|
|
static_libs: ["android.hardware.tests.safeunion@1.0"],
|
|
}
|