mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00:00
This makes it so that users of flatbuffer_cc_library don't need to have rules_nodejs available in their WORKSPACE, addressing #7179.
15 lines
337 B
Python
15 lines
337 B
Python
load("//:typescript.bzl", "flatbuffer_ts_library")
|
|
|
|
filegroup(
|
|
name = "reflection_fbs_schema",
|
|
srcs = ["reflection.fbs"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
flatbuffer_ts_library(
|
|
name = "reflection_ts_fbs",
|
|
srcs = ["reflection.fbs"],
|
|
include_reflection = False,
|
|
visibility = ["//visibility:public"],
|
|
)
|