Bazel: add forgotten files

This commit is contained in:
Paolo Tranquilli
2024-09-05 08:26:41 +02:00
parent 913a9263d2
commit 7c80b33a63
3 changed files with 9 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# This check only makes sense when building from the internal repository
def glibc_symbols_check(**kwargs):
pass

View File

@@ -0,0 +1,5 @@
# we only need to build universal binaries when building releases from the internal repo
# when building from the codeql repo, we can stub this rule with an alias
def universal_binary(*, name, dep, **kwargs):
native.alias(name = name, actual = dep, **kwargs)