28 lines
530 B
Text
28 lines
530 B
Text
cc_library_shared {
|
|
name: "libsoundpool",
|
|
|
|
srcs: [
|
|
"android_media_SoundPool.cpp",
|
|
"SoundPool.cpp",
|
|
"SoundPoolThread.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
"libutils",
|
|
"libandroid_runtime",
|
|
"libnativehelper",
|
|
"libaudioclient",
|
|
"libmediandk",
|
|
"libbinder",
|
|
],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
"-Wno-error=deprecated-declarations",
|
|
"-Wunused",
|
|
"-Wunreachable-code",
|
|
],
|
|
}
|