blob: 7e0c25f1187da4d7e83c53d8667c085fdc79b0bc [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/test_package.gni")
executable("bin") {
testonly = true
output_name = "goldfish_test"
sources = [ "goldfish_test.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.goldfish:fuchsia.hardware.goldfish_llcpp",
"//sdk/fidl/fuchsia.sysmem:fuchsia.sysmem_llcpp",
"//sdk/lib/fdio",
"//src/lib/fsl",
"//third_party/googletest:gtest",
"//zircon/public/lib/fidl",
"//zircon/public/lib/zircon-internal",
"//zircon/public/lib/zx",
]
}
test_package("goldfish_test") {
deps = [ ":bin" ]
tests = [
{
name = "goldfish_test"
},
]
}