mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-01-16 17:20:47 +01:00
96ed252649
-Wimplicit-fallthrough will be enabled globally. Test: build with global -Wimplicit-fallthrough. Change-Id: I13b4402d9df23a888bdc80be4ce39cd5cd4cff7f
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
cc_library_static {
|
|
name: "libFraunhoferAAC",
|
|
vendor_available: true,
|
|
srcs: [
|
|
"libAACdec/src/*.cpp",
|
|
"libAACenc/src/*.cpp",
|
|
"libPCMutils/src/*.cpp",
|
|
"libFDK/src/*.cpp",
|
|
"libSYS/src/*.cpp",
|
|
"libMpegTPDec/src/*.cpp",
|
|
"libMpegTPEnc/src/*.cpp",
|
|
"libSBRdec/src/*.cpp",
|
|
"libSBRenc/src/*.cpp",
|
|
"libArithCoding/src/*.cpp",
|
|
"libDRCdec/src/*.cpp",
|
|
"libSACdec/src/*.cpp",
|
|
"libSACenc/src/*.cpp",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wno-unused-parameter",
|
|
"-Wno-#warnings",
|
|
"-Wuninitialized",
|
|
"-Wno-self-assign",
|
|
"-Wno-implicit-fallthrough",
|
|
],
|
|
sanitize: {
|
|
misc_undefined:["unsigned-integer-overflow", "signed-integer-overflow"],
|
|
cfi: true,
|
|
},
|
|
export_include_dirs: [
|
|
"libAACdec/include",
|
|
"libAACenc/include",
|
|
"libPCMutils/include",
|
|
"libFDK/include",
|
|
"libSYS/include",
|
|
"libMpegTPDec/include",
|
|
"libMpegTPEnc/include",
|
|
"libSBRdec/include",
|
|
"libSBRenc/include",
|
|
"libArithCoding/include",
|
|
"libDRCdec/include",
|
|
"libSACdec/include",
|
|
"libSACenc/include",
|
|
],
|
|
}
|