Files
qrtr/Android.bp
Luca Weiss 3edda0ebec ns: Drop qrtr-ns
The qrtr-ns has been superceded by the in-kernel nameserver since
multiple years. If anybody wants to do archeology, they can find qrtr-ns
with old releases / in the git history. Drop it and remove quite some
code.

Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
2025-11-21 13:16:29 +01:00

36 lines
635 B
Plaintext

cc_library {
name: "libqrtr",
vendor: true,
srcs: [
"lib/logging.c",
"lib/qrtr.c",
"lib/qmi.c",
],
cflags: ["-fPIC", "-Wno-error"],
export_include_dirs: ["lib"],
local_include_dirs: ["src"],
}
cc_binary {
name: "qrtr-cfg",
vendor: true,
srcs: [
"lib/logging.c",
"src/addr.c",
"src/cfg.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}
cc_binary {
name: "qrtr-lookup",
vendor: true,
srcs: [
"lib/logging.c",
"src/lookup.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}