blob: 3abb7dced7f83d68d2950cc6413d8ea21d1daf90 [file] [log] [blame]
# Copyright 2019 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
source_set("kernel") {
sources = [
"cmdline.cpp",
"deadline.cpp",
"debug.cpp",
"dpc.cpp",
"event.cpp",
"init.cpp",
"mp.cpp",
"mutex.cpp",
"percpu.cpp",
"sched.cpp",
"thread.cpp",
"timer.cpp",
"wait.cpp",
]
deps = [
"$zx/kernel/dev/interrupt",
"$zx/kernel/lib/console",
"$zx/kernel/lib/counters",
"$zx/kernel/lib/debug",
"$zx/kernel/lib/fbl",
"$zx/kernel/lib/heap",
"$zx/kernel/lib/libc",
"$zx/kernel/object",
"$zx/kernel/vm",
"$zx/system/ulib/explicit-memory",
"$zx/system/ulib/zircon-internal",
]
}