Skip to content

Commit

Permalink
Add pdk protobuf targets.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim 'mithro' Ansell <[email protected]>
  • Loading branch information
mithro committed Nov 20, 2023
1 parent 0737bbe commit b0b7768
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion pdk/proto/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,29 @@
# See the License for the specific language governing permissions and
# limitations under the License.

load("@rules_python//python:proto.bzl", "py_proto_library")

package(
default_applicable_licenses = ["//:package_license"],
default_visibility = ["//visibility:private"],
default_visibility = ["//visibility:public"],
)

exports_files([
"build_defs.bzl",
"pdk_info.proto",
])

proto_library(
name = "pdk_info_proto",
srcs = ["pdk_info.proto"],
)

cc_proto_library(
name = "pdk_info_cc_proto",
deps = [":pdk_info_proto"],
)

py_proto_library(
name = "pdk_info_py_proto",
deps = [":pdk_info_proto"],
)

0 comments on commit b0b7768

Please sign in to comment.