mirror of
https://github.com/openharmony/third_party_tinyalsa.git
synced 2026-07-18 13:25:09 -04:00
cdcc350bf9
Create a new Android.bp file used by Android Oreo. There are dependencies on tinyalsa from other components in Oreo that use the new build system and these break if tinyalsa is using the older Android.mk build system. Oreo still picks up and tries to build the Android.mk found in the jni directory and this leads to a build conflict so it has been deleted. Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
53 lines
987 B
Plaintext
53 lines
987 B
Plaintext
cc_library {
|
|
name: "libtinyalsa",
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
srcs: [
|
|
"src/mixer.c",
|
|
"src/pcm.c",
|
|
],
|
|
cflags: ["-Werror", "-Wno-macro-redefined"],
|
|
export_include_dirs: ["include"],
|
|
local_include_dirs: ["include"],
|
|
|
|
target: {
|
|
darwin: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_binary {
|
|
name: "tinyplay",
|
|
host_supported: true,
|
|
srcs: ["utils/tinyplay.c"],
|
|
shared_libs: ["libtinyalsa"],
|
|
cflags: ["-Werror"],
|
|
target: {
|
|
darwin: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_binary {
|
|
name: "tinycap",
|
|
srcs: ["utils/tinycap.c"],
|
|
shared_libs: ["libtinyalsa"],
|
|
cflags: ["-Werror"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "tinymix",
|
|
srcs: ["utils/tinymix.c"],
|
|
shared_libs: ["libtinyalsa"],
|
|
cflags: ["-Werror", "-Wall"],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "tinypcminfo",
|
|
srcs: ["utils/tinypcminfo.c"],
|
|
shared_libs: ["libtinyalsa"],
|
|
cflags: ["-Werror"],
|
|
}
|