mirror of
https://github.com/github/codeql.git
synced 2025-12-22 11:46:32 +01:00
The test sdk that we were prebuilding to run ql tests is actually not needed, as the `resource-dir` we package for cross-version compatibility is enough for running qltests as well.
18 lines
572 B
Python
18 lines
572 B
Python
package(default_visibility = ["//swift:__subpackages__"])
|
|
|
|
alias(
|
|
name = "swift-llvm-support",
|
|
actual = select({
|
|
"@bazel_tools//src/conditions:linux": "@swift_prebuilt_linux//:swift-llvm-support",
|
|
"@bazel_tools//src/conditions:darwin": "@swift_prebuilt_darwin_x86_64//:swift-llvm-support",
|
|
}),
|
|
)
|
|
|
|
alias(
|
|
name = "swift-resource-dir",
|
|
actual = select({
|
|
"@bazel_tools//src/conditions:linux": "@swift_toolchain_linux//:resource-dir",
|
|
"@bazel_tools//src/conditions:darwin": "@swift_toolchain_macos//:resource-dir",
|
|
}),
|
|
)
|