-
Notifications
You must be signed in to change notification settings - Fork 78
/
Android.bp
54 lines (46 loc) · 1.05 KB
/
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_defaults {
name: "libcommonapi_defaults",
rtti: true,
cppflags: [
"-std=c++17",
"-Wall",
"-Wextra",
"-Wformat",
"-Wformat-security",
"-Wconversion",
"-Wno-attributes",
"-fexceptions",
"-fstrict-aliasing",
"-fstack-protector",
"-fasynchronous-unwind-tables",
"-fno-omit-frame-pointer",
"-fvisibility=hidden",
"-Wno-ignored-attributes",
"-Wno-unused-private-field",
"-D_CRT_SECURE_NO_WARNINGS",
"-DCOMMONAPI_INTERNAL_COMPILATION",
"-DCOMMONAPI_LOGLEVEL=COMMONAPI_LOGLEVEL_VERBOSE",
"-DUSE_DLT",
],
proprietary: true,
}
cc_library_shared {
name: "libcommonapi",
defaults: ["libcommonapi_defaults"],
local_include_dirs: [
"include",
],
shared_libs: [
"liblog",
"libutils",
"libboost_log",
"libboost_system",
"libboost_thread",
],
export_include_dirs: [
"include",
],
srcs: [
"src/CommonAPI/**/*.cpp"
],
}