mirror of
https://github.com/vale981/ray
synced 2025-03-05 18:11:42 -05:00
14 lines
410 B
Python
14 lines
410 B
Python
![]() |
load("@com_github_google_flatbuffers//:build_defs.bzl", "flatbuffer_library_public")
|
||
|
|
||
|
def flatbuffer_py_library(name, srcs, outs, out_prefix, includes = [], include_paths = ""):
|
||
|
|
||
|
flatbuffer_library_public(
|
||
|
name = name,
|
||
|
srcs = srcs,
|
||
|
outs = outs,
|
||
|
language_flag = "-p",
|
||
|
out_prefix = out_prefix,
|
||
|
include_paths = include_paths,
|
||
|
includes = includes,
|
||
|
)
|