See build/soong/README.md for more information. Test: m -j checkbuild Change-Id: If0b7cb1e2c86ff1be41c00d98fd9ddec31287a53
29 lines
530 B
Plaintext
29 lines
530 B
Plaintext
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",
|
|
],
|
|
}
|