• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1load("//:typescript.bzl", "flatbuffer_ts_library")
2
3genrule(
4    name = "copy_schema_to_folder",
5    srcs = ["//reflection:reflection_fbs_schema"],
6    outs = ["reflection.fbs"],
7    cmd = "cp $< $@",
8)
9
10flatbuffer_ts_library(
11    name = "reflection_ts_fbs",
12    srcs = [":reflection.fbs"],
13    gen_reflections = True,
14    visibility = ["//visibility:public"],
15)
16