mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
17 lines
370 B
Python
17 lines
370 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/extractor/remapping",
|
|
"//swift/tools/prebuilt:swift-llvm-support",
|
|
],
|
|
)
|