mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 02:18:40 +00:00
Checked points:
- service is on
- vts can run on it
- provided a dummy implementation that a VTS test can pass it
- applied with recent update in radio 1.2 hal
- format repaired
- pass on a 1.0 VTS test, a 1.1 VTS test, and a 1.2 VTS test
Bug: 74114758
Test: run vts
Change-Id: I8a052e3cedb41db9028552ab88f1e26492718497
Merged-In: I8a052e3cedb41db9028552ab88f1e26492718497
(cherry picked from commit 0de4d31569)
40 lines
951 B
Plaintext
40 lines
951 B
Plaintext
cc_binary {
|
|
name: "android.hardware.radio@1.2-radio-service",
|
|
init_rc: ["android.hardware.radio@1.2-radio-service.rc"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
srcs: [
|
|
"Radio.cpp",
|
|
"radio-service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.radio@1.2",
|
|
"android.hardware.radio@1.0",
|
|
"android.hardware.radio@1.1",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.radio@1.2-sap-service",
|
|
init_rc: ["android.hardware.radio@1.2-sap-service.rc"],
|
|
relative_install_path: "hw",
|
|
vendor: true,
|
|
srcs: [
|
|
"Sap.cpp",
|
|
"sap-service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.radio@1.2",
|
|
"android.hardware.radio@1.0",
|
|
"android.hardware.radio@1.1",
|
|
],
|
|
}
|