1# Copyright 2016 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 := usertest
10
11MODULE_SRCS += \
12    $(LOCAL_DIR)/main.c \
13    $(LOCAL_DIR)/test-device.cpp \
14    $(LOCAL_DIR)/volume.cpp \
15    $(LOCAL_DIR)/zxcrypt.cpp \
16
17MODULE_NAME := zxcrypt-test
18
19MODULE_COMPILEFLAGS += -Isystem/utest
20
21MODULE_LIBS := \
22    system/ulib/c \
23    system/ulib/zircon \
24    system/ulib/fdio \
25    system/ulib/crypto \
26    system/ulib/digest \
27    system/ulib/fs-management \
28    system/ulib/unittest \
29    system/ulib/zxcrypt \
30
31MODULE_STATIC_LIBS := \
32    third_party/ulib/cryptolib \
33    third_party/ulib/uboringssl \
34    system/ulib/block-client \
35    system/ulib/ddk \
36    system/ulib/fvm \
37    system/ulib/fs \
38    system/ulib/gpt \
39    system/ulib/pretty \
40    system/ulib/sync \
41    system/ulib/zx \
42    system/ulib/zxcpp \
43    system/ulib/fbl \
44
45include make/module.mk
46