blob: 736ff33c032d0aadd44d9741041ddbd27198b1fe [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("kernel-unittests") {
output_name = "kernel-unittests-test"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "kernel-unittests.cc" ]
deps = [
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_c",
"//sdk/lib/fdio",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
]
}
bootfs_test("kernel-unittests-bootfs-test") {
name = "kernel-unittests-test"
deps = [ ":kernel-unittests" ]
}