mongo/etc/BUILD.bazel
Daniel Moody fc6c183e2d SERVER-122303 Move copybara syncs to master (#50337)
GitOrigin-RevId: d2045870869e65f9c864106f9351cb3e3a0db823
2026-05-04 16:00:45 +00:00

41 lines
930 B
Python

load("//bazel:mongo_src_rules.bzl", "symlink")
package(default_visibility = ["//visibility:public"])
exports_files([
"lsan.suppressions",
"tsan.suppressions",
"burn_in_tests.yml",
"extensions.yml",
"evergreen_yml_components/copybara/copybara_gen.yml",
"backports_required_for_multiversion_tests.yml",
])
# This is a hack to work around the fact that the cc_library flag additional_compiler_inputs doesn't
# exist in cc_binary. Instead, we add the denylists to srcs as header files to make them visible to
# the compiler executable.
filegroup(
name = "asan_denylist_h",
srcs = ["asan.denylist"],
)
filegroup(
name = "msan_denylist_h",
srcs = ["msan.denylist"],
)
filegroup(
name = "tsan_denylist_h",
srcs = ["tsan.denylist"],
)
filegroup(
name = "ubsan_denylist_h",
srcs = ["ubsan.denylist"],
)
filegroup(
name = "mac_plist",
srcs = ["macos_mongodb.plist"],
)