16 lines
310 B
Plaintext
16 lines
310 B
Plaintext
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
|
|
|
|
# Some comment to be preserved
|
|
|
|
filegroup(
|
|
name = "allfiles",
|
|
srcs = glob(["**"]),
|
|
)
|
|
|
|
bzl_library(
|
|
name = "foo",
|
|
srcs = ["foo.bzl"],
|
|
visibility = ["//visibility:public"],
|
|
deps = ["@bazel_tools//tools/build_defs/repo:http.bzl"],
|
|
)
|