13f6e0c797
PiperOrigin-RevId: 478279747
21 lines
481 B
Python
21 lines
481 B
Python
load("@org_tensorflow//tensorflow:tensorflow.bzl", "pybind_extension")
|
|
|
|
package(
|
|
default_visibility = ["//mediapipe/tasks:internal"],
|
|
licenses = ["notice"], # Apache 2.0
|
|
)
|
|
|
|
pybind_extension(
|
|
name = "_pywrap_flatbuffers",
|
|
srcs = [
|
|
"flatbuffers_lib.cc",
|
|
],
|
|
features = ["-use_header_modules"],
|
|
module_name = "_pywrap_flatbuffers",
|
|
deps = [
|
|
"@flatbuffers",
|
|
"@local_config_python//:python_headers",
|
|
"@pybind11",
|
|
],
|
|
)
|