Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
4fc93044
Commit
4fc93044
authored
Aug 07, 2017
by
Vladimir Moskva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make .bzl files compatible with future versions of Bazel
parent
f14703c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
protobuf.bzl
protobuf.bzl
+3
-3
No files found.
protobuf.bzl
View file @
4fc93044
...
...
@@ -245,9 +245,9 @@ def cc_proto_library(
)
if default_runtime and not default_runtime in cc_libs:
cc_libs
+=
[default_runtime]
cc_libs
= cc_libs +
[default_runtime]
if use_grpc_plugin:
cc_libs
+=
["
//
external
:
grpc_lib
"]
cc_libs
= cc_libs +
["
//
external
:
grpc_lib
"]
native.cc_library(
name=name,
...
...
@@ -371,7 +371,7 @@ def py_proto_library(
)
if default_runtime and not default_runtime in py_libs + deps:
py_libs
+=
[default_runtime]
py_libs
= py_libs +
[default_runtime]
native.py_library(
name=name,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment