Merge "add audio.usbv2.default linking libtinyalsav2 and libalsautilsv2"
This commit is contained in:
commit
bd8ee49f8b
1 changed files with 20 additions and 4 deletions
|
@ -12,18 +12,34 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
cc_library_shared {
|
||||
name: "audio.usb.default",
|
||||
cc_defaults {
|
||||
name: "audio.usb_defaults",
|
||||
relative_install_path: "hw",
|
||||
vendor: true,
|
||||
srcs: ["audio_hal.c"],
|
||||
shared_libs: [
|
||||
"liblog",
|
||||
"libcutils",
|
||||
"libtinyalsa",
|
||||
"libaudioutils",
|
||||
"libalsautils",
|
||||
],
|
||||
cflags: ["-Wno-unused-parameter"],
|
||||
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