blob: 60d0e4a76f4d18ae1ac6de44a522792496ecd5af [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"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "entropy.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
]
}
bootfs_test("entropy-bootfs-test") {
name = "entropy-test"
deps = [ ":entropy" ]
}