blob: f1a9f30c348ea8c94b2f5b3771e50f5411ad3630 [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/go/go_library.gni")
import("//build/go/go_test.gni")
go_library("qemu") {
name = "go.fuchsia.dev/fuchsia/tools/qemu"
}
go_test("qemu_tests") {
gopackages = [ "go.fuchsia.dev/fuchsia/tools/qemu" ]
deps = [
":qemu",
"//third_party/golibs:github.com/google/go-cmp",
]
}
group("tests") {
testonly = true
deps = [ ":qemu_tests" ]
}