33 lines
664 B
Plaintext
33 lines
664 B
Plaintext
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"],
|
|
}
|