mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-05 04:58:57 +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
394 B
Python
15 lines
394 B
Python
load("//:typescript.bzl", "flatbuffer_ts_library")
|
|
|
|
flatbuffer_ts_library(
|
|
name = "typescript_transitive_ts_fbs",
|
|
srcs = ["typescript_transitive_include.fbs"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
flatbuffer_ts_library(
|
|
name = "include_ts_fbs",
|
|
srcs = ["typescript_include.fbs"],
|
|
visibility = ["//visibility:public"],
|
|
deps = [":typescript_transitive_ts_fbs"],
|
|
)
|