mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
20 lines
478 B
Python
20 lines
478 B
Python
load("//swift:rules.bzl", "swift_cc_binary")
|
|
|
|
swift_cc_binary(
|
|
name = "extractor",
|
|
srcs = [
|
|
"SwiftOutputRewrite.cpp",
|
|
"SwiftOutputRewrite.h",
|
|
"SwiftExtractor.cpp",
|
|
"SwiftExtractor.h",
|
|
"SwiftExtractorConfiguration.h",
|
|
"main.cpp",
|
|
],
|
|
visibility = ["//swift:__pkg__"],
|
|
deps = [
|
|
"//swift/extractor/infra",
|
|
"//swift/extractor/visitors",
|
|
"//swift/tools/prebuilt:swift-llvm-support",
|
|
],
|
|
)
|