| # 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 |
| |
| config("includes") { |
| include_dirs = [ "include" ] |
| } |
| |
| source_set("amlogic_rng") { |
| public = [ "include/dev/hw_rng/amlogic_rng/init.h" ] |
| public_deps = [ "//sdk/lib/zbi-format" ] |
| sources = [ "amlogic-rng.cc" ] |
| deps = [ |
| "//zircon/kernel/dev/hw_rng", |
| "//zircon/kernel/phys:handoff", |
| "//zircon/system/ulib/explicit-memory", |
| ] |
| public_configs = [ ":includes" ] |
| } |