forked from zephyrproject-rtos/liblc3codec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Android.bp
43 lines (42 loc) · 943 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
cc_library_static {
name: "liblc3codec",
apex_available: [
"//apex_available:platform",
"com.android.bluetooth.updatable"
],
defaults: ["fluoride_defaults"],
srcs: [
"Common/*.cpp",
"Common/Tables/*.cpp",
"Encoder/*.cpp",
"Decoder/*.cpp",
"TestSupport/DatapointsAndroid.cpp",
],
cflags: [
"-Werror",
"-Wmissing-braces",
"-Wno-unused-parameter",
"-Wno-#warnings",
"-Wuninitialized",
"-Wno-self-assign",
"-Wno-implicit-fallthrough",
],
sanitize: {
misc_undefined:[
"unsigned-integer-overflow",
"signed-integer-overflow",
"bounds",
],
cfi: true,
},
shared_libs: [
"liblog",
],
export_include_dirs: [
"Api",
"Common",
"Common/Tables",
"Common/KissFft",
"TestSupport",
],
}