blob: b5856e7962480ad3f8c7c5a8f880faab6baff9f3 [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_test.gni")
import("//build/go/go_library.gni")
import("//build/package.gni")
go_library("far") {
name = "fuchsia.googlesource.com/far"
}
go_test("go_far_test") {
gopackage = "fuchsia.googlesource.com/far"
deps = [ ":far" ]
}
package("go_far_tests") {
deps = [
":go_far_test",
]
tests = [ {
name = "go_far_test"
} ]
}