blob: 2f632ff1cebceaf75bfc1239c331c955ab477e95 [file] [log] [blame]
# Copyright 2018 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/package.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
go_library("far") {
name = "fuchsia.googlesource.com/far"
}
go_test("go_far_test") {
gopackages = [ "fuchsia.googlesource.com/far" ]
deps = [ ":far" ]
}
test_package("go_far_tests") {
deps = [ ":go_far_test" ]
tests = [
{
name = "go_far_test"
environments = basic_envs
},
]
}