1# Copyright 2017 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
7LOCAL_DIR := $(GET_LOCAL_DIR)
8
9MODULE := $(LOCAL_DIR)
10
11MODULE_SRCS += \
12	$(LOCAL_DIR)/memory_limit.cpp \
13
14MODULE_INCLUDES += \
15	$(LOCAL_DIR)/include
16
17MODULE_DEPS += \
18    kernel/lib/fbl \
19    kernel/lib/pretty \
20
21include make/module.mk
22