vendor/cloud/cloudservice/Android.bp

33 lines
664 B
Plaintext
Raw Normal View History

2025-08-25 08:12:20 +08:00
aidl_interface {
name: "cloud_aidl_interface",
vendor_available: true,
srcs: [
"**/*.aidl"
],
backend: {
java: {
sdk_version: "33",
},
ndk: {
enabled: false,
},
},
unstable: true,
}
cc_prebuilt_binary {
name: "cloudservice",
init_rc: ["init.cloudservice.rc"],
srcs: ["cloudservice"],
shared_libs : [
"liblog",
"libutils",
"libinput",
"libcutils",
"libbinder",
"cloud_aidl_interface-cpp",
"libbase",
"libhidlbase",
],
static_libs: ["libqemud.cloud"],
}