Austin Schuh | 2dd86a9 | 2022-09-14 21:19:23 -0700 | [diff] [blame] | 1 | load("//:typescript.bzl", "flatbuffer_ts_library") |
2 | |||||
3 | genrule( | ||||
4 | name = "copy_schema_to_folder", | ||||
5 | srcs = ["//reflection:reflection_fbs_schema"], | ||||
6 | outs = ["reflection.fbs"], | ||||
7 | cmd = "cp $< $@", | ||||
8 | ) | ||||
9 | |||||
10 | flatbuffer_ts_library( | ||||
11 | name = "reflection_ts_fbs", | ||||
12 | package_name = "flatbuffers_reflection", | ||||
13 | srcs = [":reflection.fbs"], | ||||
14 | include_reflection = False, | ||||
15 | visibility = ["//visibility:public"], | ||||
16 | ) |