forked from linux-msm/qrtr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
52 lines (49 loc) · 947 Bytes
/
Android.bp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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-ns",
vendor: true,
srcs: [
"lib/logging.c",
"src/addr.c",
"src/ns.c",
"src/map.c",
"src/hash.c",
"src/waiter.c",
"src/util.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}
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",
"src/util.c",
],
cflags: ["-Wno-error"],
local_include_dirs: ["lib"],
}