blob: 136ca803d3a982a402194d6c6152d031c5f2a9c7 [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/components.gni")
import("//build/go/go_library.gni")
import("//build/go/go_test.gni")
fuchsia_component("empty-go-test") {
testonly = true
manifest = "meta/empty_go_test.cml"
component_name = "empty_go_test"
deps = [ ":empty_go_test" ]
}
go_library("empty_go_test_lib") {
name = "go.fuchsia.dev/fuchsia/src/sys/test_runners/gotests/test_data/empty_go_test/..."
sources = [ "empty_go_test.go" ]
}
go_test("empty_go_test") {
gopackages = [ "go.fuchsia.dev/fuchsia/src/sys/test_runners/gotests/test_data/empty_go_test" ]
deps = [ ":empty_go_test_lib" ]
}