blob: 4270d5076bf4c9d03cfb1f64a54f7b56bc96581e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
# TODO(#746) exclude because gazelle does not recognise the rule below
# gazelle:exclude a
# gazelle:exclude b
go_library(
name = "a/pkg",
srcs = ["a/pkg/pkg.go"],
)
go_library(
name = "b/pkg",
srcs = ["b/pkg/pkg.go"],
)
go_test(
name = "go_default_test",
size = "small",
srcs = ["slash_test.go"],
deps = [
":a/pkg",
":b/pkg",
],
)