-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroid.bp
More file actions
38 lines (37 loc) · 795 Bytes
/
Android.bp
File metadata and controls
38 lines (37 loc) · 795 Bytes
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
cc_library_headers {
name: "libuorb_topic_headers",
export_include_dirs: ["./include"],
proprietary: true,
}
cc_library_static {
name: "libuorb_topic",
vendor: true,
srcs: [
"src/connectivity/*.c",
"src/fitness/*.c",
"src/location/*.c",
"src/media/*.c",
"src/miai/*.c",
"src/sensor/*.c",
"src/system/*.c",
],
local_include_dirs: ["./include"],
cflags: [
"-Wall",
"-Werror",
"-DFAR=",
"-DCODE=",
"-DOK=0",
"-DERROR=-1",
"-DCONFIG_DEBUG_UORB",
"-Dbegin_packed_struct=",
"-Dend_packed_struct=__attribute__((packed))"
],
header_libs: [
"libuorb_headers",
"kernel_modules_headers"
],
static_libs: [
"libuorb",
],
}