26 lines
365 B
Text
26 lines
365 B
Text
cc_binary {
|
|
name: "service",
|
|
|
|
srcs: ["service.cpp"],
|
|
|
|
shared_libs: [
|
|
"libutils",
|
|
"libbinder",
|
|
],
|
|
|
|
cflags: ["-DXP_UNIX"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "vndservice",
|
|
|
|
proprietary: true,
|
|
srcs: ["service.cpp"],
|
|
|
|
shared_libs: [
|
|
"libutils",
|
|
"libbinder",
|
|
],
|
|
|
|
cflags: ["-DXP_UNIX", "-DVENDORSERVICES"],
|
|
}
|