aboutsummaryrefslogtreecommitdiff
path: root/protobuf.bzl
diff options
context:
space:
mode:
authorJisi Liu <jisi.liu@gmail.com>2015-10-20 15:30:44 -0700
committerJisi Liu <jisi.liu@gmail.com>2015-10-20 15:30:44 -0700
commita33fa8eddc05cb48eea940fbbdf5dce24d9cfa49 (patch)
tree532a1f832866efd9f420c9d28a4865fd131b8a2d /protobuf.bzl
parent53a56be4c49174bc2697d648b3d41ff141fee1d7 (diff)
downloadprotobuf-a33fa8eddc05cb48eea940fbbdf5dce24d9cfa49.tar.gz
protobuf-a33fa8eddc05cb48eea940fbbdf5dce24d9cfa49.tar.bz2
protobuf-a33fa8eddc05cb48eea940fbbdf5dce24d9cfa49.zip
fix sources for python target and add needed dependencies.
Diffstat (limited to 'protobuf.bzl')
-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(