Files
rk35xx-android14/system/media/audio_route/Android.bp
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

45 lines
950 B
Plaintext

package {
// http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// the below license kinds from "system_media_license":
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["system_media_license"],
}
cc_defaults {
name: "libaudioroute_defaults",
vendor_available: true,
host_supported: true,
srcs: ["audio_route.c"],
export_include_dirs: ["include"],
shared_libs: [
"liblog",
"libcutils",
"libutils",
"libexpat",
],
cflags: [
"-Werror",
"-Wall",
],
}
cc_library_shared {
name: "libaudioroute",
defaults: ["libaudioroute_defaults"],
vndk: {
enabled: true,
},
shared_libs: [
"libtinyalsa",
],
}
cc_library_shared {
name: "libaudioroutev2",
defaults: ["libaudioroute_defaults"],
shared_libs: [
"libtinyalsav2",
],
}