1# Copyright 2018 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_USERTEST_GROUP := fs
10
11MODULE_TYPE := usertest
12
13MODULE_SRCS += \
14    $(LOCAL_DIR)/fdio-tests.cpp \
15    $(LOCAL_DIR)/fidl-tests.cpp \
16    $(LOCAL_DIR)/main.c \
17
18MODULE_NAME := devfs-test
19
20MODULE_FIDL_LIBS := \
21    system/fidl/fuchsia-io \
22
23MODULE_STATIC_LIBS := \
24    system/ulib/zx \
25    system/ulib/zxcpp \
26    system/ulib/fbl
27
28MODULE_LIBS := \
29    system/ulib/c \
30    system/ulib/fdio \
31    system/ulib/unittest \
32    system/ulib/zircon \
33
34include make/module.mk
35