mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
14 lines
335 B
Python
14 lines
335 B
Python
load("//swift:rules.bzl", "swift_cc_library")
|
|
|
|
swift_cc_library(
|
|
name = "translators",
|
|
srcs = glob(["*.cpp"]),
|
|
hdrs = glob(["*.h"]),
|
|
visibility = ["//swift:__subpackages__"],
|
|
deps = [
|
|
"//swift/extractor/infra",
|
|
"//swift/extractor/mangler",
|
|
"//swift/third_party/resources:prebuilt",
|
|
],
|
|
)
|