diff options
Diffstat (limited to 'templates/BUILD.template')
-rw-r--r-- | templates/BUILD.template | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/BUILD.template b/templates/BUILD.template index 8303b9f8e9..075c399a18 100644 --- a/templates/BUILD.template +++ b/templates/BUILD.template @@ -1,5 +1,7 @@ # GRPC Bazel BUILD file. # This currently builds C and C++ code. +# This file has been automatically generated from a template file. +# Please look at the templates directory instead. # Copyright 2015, Google Inc. # All rights reserved. @@ -54,7 +56,7 @@ def get_deps(target_dict): %> % for lib in libs: -% if lib.build != "private": +% if lib.build in ("all", "protoc"): ${cc_library(lib)} % endif % endfor |