blob: 0199c7dca674a1a427c00e02cdcf2529cac9e27a [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 = [
"//zircon/kernel/lib/console",
"//zircon/kernel/lib/init",
"//zircon/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.
"//zircon/system/ulib/lockdep",
]
}