blob: 3305e1ab73504dbf700ed2dba8b447f5d76b96a0 [file] [log] [blame]
Austin Schuh8e17be92019-12-24 09:32:11 -08001"""Returns a select which is either srcs or an empty main function."""
2
Brian Silverman660d6092015-11-26 18:41:59 -05003def empty_main_if_asan(srcs):
Austin Schuh8e17be92019-12-24 09:32:11 -08004 return select({
5 "//tools:has_asan": ["//tools/cpp:empty_main"],
6 "//conditions:default": srcs,
7 })