commit | 6e58040a712c58c22b639506ae759909d5b980e4 | [log] [tgz] |
---|---|---|
author | Yun Peng <[email protected]> | Fri Jun 14 13:29:16 2019 +0200 |
committer | Adam Cozzette <[email protected]> | Wed Jun 19 09:25:52 2019 -0700 |
tree | 22117e1872284089235ef9552504e4b41dae795a | |
parent | d3e6f1076868e4c5ec5b9e9e10dd324ab15de019 [diff] [blame] |
Add "src/**/*.inc" to //:protobuf_headers Otherwise, sandbox and remote execution will complain `google/protobuf/port_def.inc` doesn't exist.
diff --git a/BUILD b/BUILD index 2fb2605..f3f1569 100644 --- a/BUILD +++ b/BUILD
@@ -218,7 +218,7 @@ # TODO(keveman): Remove this target once the support gets added to Bazel. cc_library( name = "protobuf_headers", - hdrs = glob(["src/**/*.h"]), + hdrs = glob(["src/**/*.h", "src/**/*.inc"]), includes = ["src/"], visibility = ["//visibility:public"], )