mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
c67a3df2aa
GitOrigin-RevId: ec365e57d2ea39b3b40efb3ffe0bef2d57eb7574
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands")
|
|
load("@npm//:defs.bzl", "npm_link_all_packages")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"pyproject.toml",
|
|
"poetry.lock",
|
|
"symbols.orderfile",
|
|
])
|
|
|
|
npm_link_all_packages(name = "node_modules")
|
|
|
|
alias(
|
|
name = "format",
|
|
actual = "//bazel/format",
|
|
)
|
|
|
|
alias(
|
|
name = "codeowners",
|
|
actual = "//buildscripts:codeowners",
|
|
)
|
|
|
|
# This rule makes it possible to set the clang-tidy configuration setting:
|
|
genrule(
|
|
name = "clang_tidy_config",
|
|
srcs = [
|
|
".clang-tidy.in",
|
|
],
|
|
outs = [".clang-tidy"],
|
|
|
|
# Note: we use sed to substitute the known good value `build/compiledb/mongo`; testing
|
|
# has confirmed that this is the correct value.
|
|
# We also use it to append a line to opt-in to warnings as errors.
|
|
cmd = """
|
|
cp $(location .clang-tidy.in) $@ && \
|
|
sed -i 's|@MONGO_BUILD_DIR@|$(RULEDIR)/src/mongo|g ; $$aWarningsAsErrors: "*"' $@
|
|
""",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
refresh_compile_commands(
|
|
name = "compiledb",
|
|
exclude_external_sources = True,
|
|
exclude_headers = "all", # not using "all" adds headers as sources to compile_commands.json which is never what we want
|
|
tags = ["compiledb"],
|
|
targets = {
|
|
"//src/...": "",
|
|
},
|
|
)
|