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_SRCS += \
12    $(LOCAL_DIR)/gauss-tdm-out.c \
13    $(LOCAL_DIR)/gauss-tdm-stream.cpp \
14    $(LOCAL_DIR)/tas57xx.cpp \
15
16MODULE_LIBS := \
17  system/ulib/c \
18  system/ulib/driver \
19  system/ulib/zircon \
20
21MODULE_STATIC_LIBS := \
22  system/ulib/audio-proto-utils \
23  system/ulib/audio-driver-proto \
24  system/ulib/ddk \
25  system/ulib/ddktl \
26  system/ulib/dispatcher-pool \
27  system/ulib/fbl \
28  system/ulib/sync \
29  system/ulib/zx \
30  system/ulib/zxcpp \
31
32MODULE_HEADER_DEPS := system/dev/lib/amlogic
33
34include make/module.mk
35