github.com/0xKiwi/rules_go@v0.24.3/tests/core/runfiles/runfiles_remote_test/BUILD.bazel (about)

     1  load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_test")
     2  
     3  package(default_visibility = ["//visibility:public"])
     4  
     5  go_test(
     6      name = "remote_test",
     7      srcs = ["@io_bazel_rules_go//tests/core/runfiles:runfiles_test.go"],
     8      deps = ["@io_bazel_rules_go//tests/core/runfiles:check_runfiles"],
     9  )
    10  
    11  go_binary(
    12      name = "remote_cmd",
    13      srcs = ["@io_bazel_rules_go//tests/core/runfiles:runfiles_cmd.go"],
    14      deps = ["@io_bazel_rules_go//tests/core/runfiles:check_runfiles"],
    15  )
    16  
    17  go_binary(
    18      name = "remote_bin",
    19      srcs = ["@io_bazel_rules_go//tests/core/runfiles:empty_bin.go"],
    20  )
    21  
    22  filegroup(
    23      name = "remote_group",
    24      srcs = ["remote_group.txt"],
    25  )
    26  
    27  exports_files(["remote_file.txt"])