blob: bee1d23c816e3da7aa871886795249fe0a3439ff [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("svchost") {
output_name = "svchost-test"
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.boot:fuchsia.boot_cpp",
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_cpp",
"//sdk/lib/component/incoming/cpp",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
bootfs_test("svchost-bootfs-test") {
name = "svchost-test"
deps = [ ":svchost" ]
}