From ef7a8da873a0925e0739d3dc0cf9eb39c64e5999 Mon Sep 17 00:00:00 2001 From: Yaning Liang Date: Mon, 27 Jan 2025 14:07:48 -0800 Subject: [PATCH] Add checkpoint/proto/testing/BUILD. PiperOrigin-RevId: 720301741 --- checkpoint/orbax/checkpoint/proto/testing/BUILD | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 checkpoint/orbax/checkpoint/proto/testing/BUILD diff --git a/checkpoint/orbax/checkpoint/proto/testing/BUILD b/checkpoint/orbax/checkpoint/proto/testing/BUILD new file mode 100644 index 000000000..c6448aed2 --- /dev/null +++ b/checkpoint/orbax/checkpoint/proto/testing/BUILD @@ -0,0 +1,12 @@ +licenses(["notice"]) + +proto_library( + name = "foo_proto", + srcs = ["foo.proto"], +) + +py_proto_library( + name = "foo_py_pb2", + visibility = default_visibility, + deps = [":foo_proto"], +)