mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
17 lines
415 B
Python
17 lines
415 B
Python
load("//swift:rules.bzl", "swift_cc_library")
|
|
|
|
swift_cc_library(
|
|
name = "infra",
|
|
srcs = glob(["*.cpp"]),
|
|
hdrs = glob(["*.h"]),
|
|
visibility = ["//swift:__subpackages__"],
|
|
deps = [
|
|
"//swift/extractor/config",
|
|
"//swift/extractor/infra/file",
|
|
"//swift/extractor/trap",
|
|
"//swift/logging",
|
|
"//swift/third_party/resources:prebuilt",
|
|
"@picosha2",
|
|
],
|
|
)
|