blob: 1350baaffdbca374ec9ef40bcf6ce44dab90ef39 [file] [log] [blame] [edit]
# 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
import("//build/cpp/library_headers.gni")
source_set("hw_rng") {
public_deps = [ ":headers" ]
sources = [
"debug.cc",
"hw_rng.cc",
]
deps = [
"//zircon/kernel/lib/console",
"//zircon/system/ulib/pretty",
]
}
library_headers("headers") {
headers = []
}