blob: b8fd9e1036dcaa26c5ad83dff1cc828da614de8f [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/test.gni")
import("//build/testing/bootfs_test.gni")
test("entropy") {
output_name = "entropy-test"
sources = [ "entropy.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("entropy-bootfs-test") {
name = "entropy-test"
deps = [ ":entropy" ]
}