blob: 2c0dbcf7c39f020f2b7c878ac7f6bcb9e16bebaa [file] [log] [blame]
# Copyright 2020 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")
import("//build/testing/host_test_data.gni")
group("tests") {
testonly = true
deps = []
# //src/testing/emulator only works on linux.
if (host_os == "linux") {
deps += [ ":femu_test($host_toolchain)" ]
}
}
if (is_linux) {
go_library("lib") {
testonly = true
sources = [ "femu_test.go" ]
deps = [ "//src/testing/emulator" ]
}
go_test("femu_test") {
gopackages = [ "go.fuchsia.dev/fuchsia/src/tests/femu" ]
deps = [ ":lib" ]
}
}