mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 12:20:11 +01:00
-Protobuf 5.28.3 -Grpc 1.68.2 -Abseil: LTS 20240116.3 -Plus some other transitive/related deps, riegeli and pybind11 in particular. -rules_python & rules_cc will be updated in a subsequent CL as they are their own can of worms, plus there are a few pending changes in rules_python which were not pushed yet. This also switches default protobuf implementation we rely on for bazel builds from cpp to upb, meaning all projects dependin on htis one must be built with build --action_env=PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=upb. PiperOrigin-RevId: 773586210
18 lines
367 B
Plaintext
18 lines
367 B
Plaintext
load("@com_google_protobuf//bazel:cc_proto_library.bzl", "cc_proto_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
licenses(["notice"]) # BSD
|
|
|
|
exports_files(["LICENSE.txt"])
|
|
|
|
proto_library(
|
|
name = "mlmodel_proto",
|
|
srcs = glob(["mlmodel/format/*.proto"]),
|
|
)
|
|
|
|
cc_proto_library(
|
|
name = "mlmodel_cc_proto",
|
|
deps = [":mlmodel_proto"],
|
|
)
|