Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
49902d4069f5f0e56db3e153bd172ff8d84ca18f
/
.
/
tools
/
build_rules
/
empty_main.bzl
blob: 3305e1ab73504dbf700ed2dba8b447f5d76b96a0 [
file
] [
log
] [
blame
]
"""Returns a select which is either srcs or an empty main function."""
def
empty_main_if_asan
(
srcs
):
return
select
({
"//tools:has_asan"
:
[
"//tools/cpp:empty_main"
],
"//conditions:default"
:
srcs
,
})