Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
f8f0311068624e65448428e21d1ce4b779a44040
/
.
/
tools
/
build_rules
/
empty_main.bzl
blob: dbe91202f737c25392cb775c2b094e02becb01af [
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
,
})