Merge "add audio.usbv2.default linking libtinyalsav2 and libalsautilsv2" am: bd8ee49f8b
am: b956508fa6
Original change: https://android-review.googlesource.com/c/platform/hardware/libhardware/+/1566240 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I47f783fb6c21ba7610314dd9809472f5c393205a
This commit is contained in:
commit
350d586116
1 changed files with 20 additions and 4 deletions
|
@ -12,18 +12,34 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
cc_library_shared {
|
cc_defaults {
|
||||||
name: "audio.usb.default",
|
name: "audio.usb_defaults",
|
||||||
relative_install_path: "hw",
|
relative_install_path: "hw",
|
||||||
vendor: true,
|
vendor: true,
|
||||||
srcs: ["audio_hal.c"],
|
srcs: ["audio_hal.c"],
|
||||||
shared_libs: [
|
shared_libs: [
|
||||||
"liblog",
|
"liblog",
|
||||||
"libcutils",
|
"libcutils",
|
||||||
"libtinyalsa",
|
|
||||||
"libaudioutils",
|
"libaudioutils",
|
||||||
"libalsautils",
|
|
||||||
],
|
],
|
||||||
cflags: ["-Wno-unused-parameter"],
|
cflags: ["-Wno-unused-parameter"],
|
||||||
header_libs: ["libhardware_headers"],
|
header_libs: ["libhardware_headers"],
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cc_library_shared {
|
||||||
|
name: "audio.usb.default",
|
||||||
|
defaults: ["audio.usb_defaults"],
|
||||||
|
shared_libs: [
|
||||||
|
"libtinyalsa",
|
||||||
|
"libalsautils",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
||||||
|
cc_library_shared {
|
||||||
|
name: "audio.usbv2.default",
|
||||||
|
defaults: ["audio.usb_defaults"],
|
||||||
|
shared_libs: [
|
||||||
|
"libtinyalsav2",
|
||||||
|
"libalsautilsv2",
|
||||||
|
],
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue