mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
This should cover `-merge-modules` mode. Dumping of the configuration to the target files was moved to a separate pair of header/source files, as now it is also done in `SwiftOutputRewrite.cpp`.
16 lines
331 B
Python
16 lines
331 B
Python
load("//swift:rules.bzl", "swift_cc_binary")
|
|
|
|
swift_cc_binary(
|
|
name = "extractor",
|
|
srcs = glob([
|
|
"*.h",
|
|
"*.cpp",
|
|
]),
|
|
visibility = ["//swift:__pkg__"],
|
|
deps = [
|
|
"//swift/extractor/infra",
|
|
"//swift/extractor/visitors",
|
|
"//swift/tools/prebuilt:swift-llvm-support",
|
|
],
|
|
)
|