aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorManjunath Kudlur <keveman@gmail.com>2017-03-02 18:02:05 -0800
committerManjunath Kudlur <keveman@gmail.com>2017-03-02 18:02:05 -0800
commit6837b2dcb7e19c1bda8d5c6f1bd656cb35688224 (patch)
tree2b1a0faa206ac3bba7c5306b55d1b4a287a53866 /BUILD
parent2d430f8c72e359393ed15dd456765d3154981311 (diff)
downloadprotobuf-6837b2dcb7e19c1bda8d5c6f1bd656cb35688224.tar.gz
protobuf-6837b2dcb7e19c1bda8d5c6f1bd656cb35688224.tar.bz2
protobuf-6837b2dcb7e19c1bda8d5c6f1bd656cb35688224.zip
Added comment explaining the protobuf_headers target.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD4
1 files changed, 4 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 4a60872b..3f51f597 100644
--- a/BUILD
+++ b/BUILD
@@ -181,6 +181,10 @@ cc_library(
deps = [":protobuf_lite"],
)
+# This provides just the header files for use in projects that need to build
+# shared libraries for dynamic loading. This target is available until Bazel
+# adds native support for such use cases.
+# TODO(keveman): Remove this target once the support gets added to Bazel.
cc_library(
name = "protobuf_headers",
hdrs = glob(["src/**/*.h"]),