blob: c1cd9bbd1f69e795e97d4781903c8672ae02a902 [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") {
sources = [
"aemu.go",
"aemu_test.go",
"qemu.go",
"qemu_test.go",
]
}
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" ]
}