57 lines
1.5 KiB
Plaintext
57 lines
1.5 KiB
Plaintext
|
cc_defaults {
|
||
|
name: "android.hardware.audio-impl-system_default",
|
||
|
relative_install_path: "hw",
|
||
|
srcs: [
|
||
|
"Device.cpp",
|
||
|
"DevicesFactory.cpp",
|
||
|
"ParametersUtil.cpp",
|
||
|
"PrimaryDevice.cpp",
|
||
|
"Stream.cpp",
|
||
|
"StreamIn.cpp",
|
||
|
"StreamOut.cpp",
|
||
|
"service.cpp",
|
||
|
],
|
||
|
shared_libs: [
|
||
|
"libbase",
|
||
|
"libcutils",
|
||
|
"libfmq",
|
||
|
"libhardware",
|
||
|
"libhidlbase",
|
||
|
"liblog",
|
||
|
"libmedia_helper",
|
||
|
"libmediautils_vendor",
|
||
|
"libmemunreachable",
|
||
|
"libutils",
|
||
|
"android.hardware.audio.common-util",
|
||
|
],
|
||
|
static_libs: [
|
||
|
"libaudiofoundation",
|
||
|
],
|
||
|
header_libs: [
|
||
|
"android.hardware.audio.common.util@all-versions",
|
||
|
"libaudioutils_headers",
|
||
|
"libaudio_system_headers",
|
||
|
"libmedia_headers",
|
||
|
"libmediautils_headers",
|
||
|
"libhardware_headers",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
cc_library_shared {
|
||
|
name: "android.hardware.audio@6.0-impl-system",
|
||
|
defaults: ["android.hardware.audio-impl-system_default"],
|
||
|
shared_libs: [
|
||
|
"android.hardware.audio@6.0",
|
||
|
"android.hardware.audio@6.0-util",
|
||
|
"android.hardware.audio.common@6.0",
|
||
|
"android.hardware.audio.common@6.0-util",
|
||
|
],
|
||
|
cflags: [
|
||
|
"-DMAJOR_VERSION=6",
|
||
|
"-DMINOR_VERSION=0",
|
||
|
"-DCOMMON_TYPES_MINOR_VERSION=0",
|
||
|
"-DCORE_TYPES_MINOR_VERSION=0",
|
||
|
"-include common/all-versions/VersionMacro.h",
|
||
|
],
|
||
|
}
|