46 lines
769 B
Plaintext
46 lines
769 B
Plaintext
cc_test {
|
|
name: "aidl_lazy_test",
|
|
srcs: ["main.cpp"],
|
|
test_suites: ["general-tests"],
|
|
require_root: true,
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
"libutils",
|
|
"libbinder",
|
|
],
|
|
|
|
static_libs: [
|
|
"lazy_test_service_aidl-cpp",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "aidl_lazy_test_server",
|
|
srcs: [
|
|
"server.cpp",
|
|
"LazyTestService.cpp",
|
|
],
|
|
init_rc: ["aidl_lazy_test_server.rc"],
|
|
system_ext_specific: true,
|
|
|
|
shared_libs: [
|
|
"libbinder",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
|
|
static_libs: [
|
|
"lazy_test_service_aidl-cpp",
|
|
],
|
|
}
|
|
|
|
aidl_interface {
|
|
name: "lazy_test_service_aidl",
|
|
unstable: true,
|
|
srcs: [
|
|
"ILazyTestService.aidl",
|
|
],
|
|
}
|