# Copyright 2018 The Fuchsia Authors | |
# | |
# Use of this source code is governed by a MIT-style | |
# license that can be found in the LICENSE file or at | |
# https://opensource.org/licenses/MIT | |
library("memory_limit") { | |
kernel = true | |
sources = [ | |
"memory_limit.cpp", | |
] | |
deps += [ | |
":tests", | |
"$zx/kernel/lib/fbl", | |
] | |
} | |
source_set("tests") { | |
sources = [ | |
"memory_limit_tests.cpp", | |
] | |
deps += [ | |
":headers", | |
"$zx/kernel/lib/unittest", | |
] | |
} |