blob: 76d8bd1ca171d57165031d7076ce30d24a16669c [file] [log] [blame] [edit]
# Copyright 2025 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
config("includes") {
include_dirs = [ "include" ]
}
source_set("qcom_rng") {
public = [ "include/dev/hw_rng/qcom_rng/init.h" ]
public_deps = [ "//sdk/lib/zbi-format" ]
sources = [ "qcom-rng.cc" ]
deps = [
"//zircon/kernel/dev/hw_rng",
"//zircon/kernel/phys:handoff",
"//zircon/system/ulib/explicit-memory",
"//zircon/system/ulib/hwreg",
]
public_configs = [ ":includes" ]
}