mirror of
https://github.com/ioacademy-jikim/android_framwork
synced 2025-06-07 16:06:29 +00:00
19 lines
363 B
Plaintext
19 lines
363 B
Plaintext
cc_binary {
|
|
name: "my_server_cpp_3",
|
|
shared_libs: ["liblog", "libutils", "libbinder"],
|
|
srcs: [
|
|
"my_server.cpp",
|
|
"ILedService.cpp",
|
|
"LedService.cpp",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "my_client_cpp_3",
|
|
shared_libs: ["liblog", "libutils", "libbinder"],
|
|
srcs: [
|
|
"my_client.cpp",
|
|
"ILedService.cpp",
|
|
],
|
|
}
|