You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
893 B

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_test_library {
name: "libaudioloopback_jni",
srcs: [
"jni-bridge.cpp",
"NativeAudioAnalyzer.cpp"
],
include_dirs: [
"frameworks/av/media/ndk/include",
"system/core/include/cutils",
"cts/apps/CtsVerifier/jni/megaaudio/player",
"cts/apps/CtsVerifier/jni/megaaudio/recorder",
"external/oboe/include",
"external/oboe/src",
"external/oboe/src/common",
"external/oboe/src/aaudio",
],
header_libs: ["jni_headers"],
shared_libs: [
"libaaudio",
"liblog",
],
stl: "libc++_static",
ldflags: ["-Wl,--hash-style=sysv"],
cflags: [
"-Werror",
"-Wall",
"-Wno-unused-parameter",
// For slCreateEngine
"-Wno-deprecated",
],
sdk_version: "current",
}