blob: e03bd8b274cdda2dcab9312db24a8fd98bf31d84 [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("ring") {
sources = [
"buffer.go",
"buffer_test.go",
]
}
go_test("tests") {
output_name = "ring_tests"
gopackages = [ "go.fuchsia.dev/fuchsia/tools/lib/ring" ]
deps = [ ":ring" ]
}