perfetto: force linkstatic for all cc_library targets
This ensures that we don't get ODR violations in G3.
Change-Id: Ie94cd4e885f6d3394b49f32891bd967bc9ce9211
diff --git a/bazel/rules.bzl b/bazel/rules.bzl
index dcae582..7fca94d 100644
--- a/bazel/rules.bzl
+++ b/bazel/rules.bzl
@@ -217,7 +217,7 @@
res = {}
for arg in args:
for k, v in arg.items():
- if type(v) == "string":
+ if type(v) == "string" or type(v) == "bool":
res[k] = v
elif type(v) == "list" or type(v) == "select":
res[k] = res.get(k, []) + v