From ad649e987f716040468d68cf221e4433ac8147ad Mon Sep 17 00:00:00 2001 From: Angus Davis Date: Fri, 13 Nov 2020 09:12:02 -0500 Subject: [PATCH] Build: Propagate user-supplied tags to external headers library. This change applies user supplied tags to the _with_external_headers cc_library created by envoy_cc_library. This is useful for cases where builds are filtered or modified by tag (e.g., tags = manual, no-remmote, etc). Signed-off-by: Angus Davis --- bazel/envoy_library.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/envoy_library.bzl b/bazel/envoy_library.bzl index adcee0750790e..a2f7c6b0ae028 100644 --- a/bazel/envoy_library.bzl +++ b/bazel/envoy_library.bzl @@ -144,7 +144,7 @@ def envoy_cc_library( hdrs = hdrs, copts = envoy_copts(repository) + copts, visibility = visibility, - tags = ["nocompdb"], + tags = ["nocompdb"] + tags, deps = [":" + name], strip_include_prefix = strip_include_prefix, )