Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
ff98e65095f33c0f9554a548abafba7e9a32b0b7
/
.
/
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
,
})