Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
839 B
31 lines
839 B
|
|
# copybara:strip_for_google3_begin |
|
|
|
def pyproto_test_wrapper(name): |
|
src = name + "_wrapper.py" |
|
native.py_test( |
|
name = name, |
|
srcs = [src], |
|
legacy_create_init = False, |
|
main = src, |
|
data = ["@com_google_protobuf//:testdata"], |
|
deps = [ |
|
"//python:message_ext", |
|
"@com_google_protobuf//:python_common_test_protos", |
|
"@com_google_protobuf//:python_specific_test_protos", |
|
"@com_google_protobuf//:python_srcs", |
|
], |
|
) |
|
|
|
# copybara:replace_for_google3_begin |
|
# |
|
# def pyproto_test_wrapper(name): |
|
# src = name + "_wrapper.py" |
|
# native.py_test( |
|
# name = name, |
|
# srcs = [src], |
|
# main = src, |
|
# deps = ["//net/proto2/python/internal:" + name + "_for_deps"], |
|
# ) |
|
# |
|
# copybara:replace_for_google3_end
|
|
|