1# Copyright 2017 The Fuchsia Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5LOCAL_DIR := $(GET_LOCAL_DIR)
6
7MODULE := $(LOCAL_DIR)
8
9MODULE_TYPE := driver
10
11MODULE_NAME := qemu-audio
12
13MODULE_SRCS += \
14    $(LOCAL_DIR)/binding.c \
15    $(LOCAL_DIR)/qemu-codec.cpp \
16    $(LOCAL_DIR)/qemu-stream.cpp \
17
18MODULE_LIBS := \
19    system/ulib/driver \
20    system/ulib/zircon \
21    system/ulib/c \
22
23MODULE_STATIC_LIBS := \
24    system/ulib/ddk \
25    system/ulib/intel-hda \
26    system/ulib/audio-driver-proto \
27    system/ulib/audio-proto-utils \
28    system/ulib/dispatcher-pool \
29    system/ulib/fbl \
30    system/ulib/zx \
31    system/ulib/zxcpp \
32
33include make/module.mk
34