Commit 4fc93044 authored by Vladimir Moskva's avatar Vladimir Moskva

Make .bzl files compatible with future versions of Bazel

parent f14703c9
...@@ -245,9 +245,9 @@ def cc_proto_library( ...@@ -245,9 +245,9 @@ def cc_proto_library(
) )
if default_runtime and not default_runtime in cc_libs: if default_runtime and not default_runtime in cc_libs:
cc_libs += [default_runtime] cc_libs = cc_libs + [default_runtime]
if use_grpc_plugin: if use_grpc_plugin:
cc_libs += ["//external:grpc_lib"] cc_libs = cc_libs + ["//external:grpc_lib"]
native.cc_library( native.cc_library(
name=name, name=name,
...@@ -371,7 +371,7 @@ def py_proto_library( ...@@ -371,7 +371,7 @@ def py_proto_library(
) )
if default_runtime and not default_runtime in py_libs + deps: if default_runtime and not default_runtime in py_libs + deps:
py_libs += [default_runtime] py_libs = py_libs + [default_runtime]
native.py_library( native.py_library(
name=name, name=name,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment