aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protobuf.bzl6
1 files changed, 3 insertions, 3 deletions
diff --git a/protobuf.bzl b/protobuf.bzl
index 1fc20dda..3b525815 100644
--- a/protobuf.bzl
+++ b/protobuf.bzl
@@ -237,12 +237,12 @@ def py_proto_library(
name=copied_srcs_name,
srcs=outs,
include=include)
- srcs=[copied_srcs_name]
+ outs=[copied_srcs_name]
native.py_library(
name=name,
- srcs=srcs+py_extra_srcs,
- deps=py_libs,
+ srcs=outs+py_extra_srcs,
+ deps=py_libs+deps,
**kargs)
def internal_protobuf_py_tests(