blob: 10fd970d61640876d375cd3f178a8c88839d0093 [file] [log] [blame]
// The wrapper -DBUILD_FLOAT needs to match
// the lvm library -DBUILD_FLOAT.
// music bundle wrapper
cc_library_shared {
name: "libbundlewrapper",
arch: {
arm: {
instruction_set: "arm",
},
},
vendor: true,
srcs: ["Bundle/EffectBundle.cpp"],
cflags: [
"-fvisibility=hidden",
"-DBUILD_FLOAT",
"-DHIGHER_FS",
"-Wall",
"-Werror",
],
relative_install_path: "soundfx",
static_libs: ["libmusicbundle"],
shared_libs: [
"libaudioutils",
"libcutils",
"libdl",
"liblog",
],
local_include_dirs: ["Bundle"],
header_libs: [
"libhardware_headers",
"libaudioeffects",
],
}
// reverb wrapper
cc_library_shared {
name: "libreverbwrapper",
arch: {
arm: {
instruction_set: "arm",
},
},
vendor: true,
srcs: ["Reverb/EffectReverb.cpp"],
cflags: [
"-fvisibility=hidden",
"-DBUILD_FLOAT",
"-DHIGHER_FS",
"-Wall",
"-Werror",
],
relative_install_path: "soundfx",
static_libs: ["libreverb"],
shared_libs: [
"libaudioutils",
"libcutils",
"libdl",
"liblog",
],
local_include_dirs: ["Reverb"],
header_libs: [
"libhardware_headers",
"libaudioeffects",
],
sanitize: {
integer_overflow: true,
},
}