1# Copyright 2018 The Fuchsia Authors
2#
3# Use of this source code is governed by a MIT-style
4# license that can be found in the LICENSE file or at
5# https://opensource.org/licenses/MIT
6
7ifneq ($(FUZZ_EXTRA_OBJS),)
8
9MODULE_TYPE := usertest
10
11MODULE_USERTEST_GROUP := fuzz
12
13MODULE_COMPILEFLAGS += -fsanitize=fuzzer
14
15MODULE_LIBS += \
16     system/ulib/zircon \
17     system/ulib/launchpad \
18
19MODULE_EXTRA_OBJS += $(FUZZ_EXTRA_OBJS)
20
21include make/module-usertest.mk
22
23MODULE_EXTRA_OBJS :=
24
25endif
26