mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-02-04 01:37:50 +01:00
3e8a17c1c1
Bug: 66996870 Test: build with WITH_TIDY=1 Exempt-From-Owner-Approval: Colin +2 should be the owner approval Change-Id: I167f73ee9dc5e977fd6976f48732ae1e1fe13c8b
35 lines
873 B
Plaintext
35 lines
873 B
Plaintext
cc_library_static {
|
|
name: "libFraunhoferAAC",
|
|
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",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wno-constant-conversion",
|
|
"-Wno-sequence-point",
|
|
"-Wno-extra",
|
|
"-Wno-#warnings",
|
|
"-Wno-constant-logical-operand",
|
|
"-Wno-self-assign",
|
|
],
|
|
export_include_dirs: [
|
|
"libAACdec/include",
|
|
"libAACenc/include",
|
|
"libPCMutils/include",
|
|
"libFDK/include",
|
|
"libSYS/include",
|
|
"libMpegTPDec/include",
|
|
"libMpegTPEnc/include",
|
|
"libSBRdec/include",
|
|
"libSBRenc/include",
|
|
],
|
|
}
|