1# Copyright 2016 The Fuchsia Authors
2# Copyright (c) 2008-2015 Travis Geiselbrecht
3#
4# Use of this source code is governed by a MIT-style
5# license that can be found in the LICENSE file or at
6# https://opensource.org/licenses/MIT
7
8LOCAL_DIR := $(GET_LOCAL_DIR)
9
10MODULE := $(LOCAL_DIR)
11
12MODULE_SRCS += \
13    $(LOCAL_DIR)/alloc_checker_tests.cpp \
14    $(LOCAL_DIR)/benchmarks.cpp \
15    $(LOCAL_DIR)/cache_tests.cpp \
16    $(LOCAL_DIR)/clock_tests.cpp \
17    $(LOCAL_DIR)/fibo.cpp \
18    $(LOCAL_DIR)/lock_dep_tests.cpp \
19    $(LOCAL_DIR)/mem_tests.cpp \
20    $(LOCAL_DIR)/preempt_disable_tests.cpp \
21    $(LOCAL_DIR)/printf_tests.cpp \
22    $(LOCAL_DIR)/resource_tests.cpp \
23    $(LOCAL_DIR)/sleep_tests.cpp \
24    $(LOCAL_DIR)/string_tests.cpp \
25    $(LOCAL_DIR)/sync_ipi_tests.cpp \
26    $(LOCAL_DIR)/tests.cpp \
27    $(LOCAL_DIR)/thread_tests.cpp \
28    $(LOCAL_DIR)/timer_tests.cpp \
29    $(LOCAL_DIR)/uart_tests.cpp \
30
31
32MODULE_DEPS += \
33    kernel/lib/crypto \
34    kernel/lib/header_tests \
35    kernel/lib/fbl \
36    kernel/lib/unittest \
37
38MODULE_COMPILEFLAGS += -fno-builtin
39
40include make/module.mk
41