github.com/bazelbuild/bazel-gazelle@v0.36.1-0.20240520142334-61b277ba6fed/language/go/testdata/embedsrcs/BUILD.want (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_library")
     2  
     3  go_library(
     4      name = "embedsrcs",
     5      srcs = ["embedsrcs.go"],
     6      _gazelle_imports = ["embed"],
     7      embedsrcs = [
     8          "_m_hidden.txt",
     9          "m_dir/static.txt",
    10          "m_gen.txt",
    11          "m_static.txt",
    12          "n_/static.txt",
    13          "o_dir/_hidden.txt",
    14          "p_dir/build.old/static.txt",
    15      ],
    16      importpath = "example.com/repo/embedsrcs",
    17      visibility = ["//visibility:public"],
    18  )