blob: ace321dbc50b1b9e03126b25ea5e387ad5ab2308 [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("lockdep") {
sources = [ "lock_dep.cc" ]
deps = [
"$zx/kernel/lib/console",
"$zx/kernel/lib/init",
"$zx/kernel/lib/ktl",
]
public_deps = [
# The kernel lockdep library is just a slight augmentation of the
# userland lockdep library, which supplies all the API headers. So
# kernel/lib/lockdep is used as if it were a library() itself and acts
# as the kernel's drop-in replacement for system/ulib/lockdep.
"$zx/system/ulib/lockdep",
]
}