mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-03 02:37:31 +00:00
* Restrict visibility of exported file * Align npm_translate_lock attrs * Remove defs_bzl_filename attr * Align root_package with pnpm-lock.yaml location Use a symlink to avoid copying the file.
20 lines
438 B
Text
20 lines
438 B
Text
filegroup(
|
|
name = "distribution",
|
|
srcs = [
|
|
"BUILD.bazel",
|
|
"reflection.fbs",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
# flatbuffer_ts_library() only supports .fbs file but not filegroups
|
|
exports_files(
|
|
srcs = ["reflection.fbs"],
|
|
visibility = ["//reflection/ts:__pkg__"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "reflection_fbs_schema",
|
|
srcs = ["reflection.fbs"],
|
|
visibility = ["//visibility:public"],
|
|
)
|