mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
16 lines
304 B
Python
16 lines
304 B
Python
load("//swift:rules.bzl", "swift_cc_library")
|
|
|
|
swift_cc_library(
|
|
name = "file",
|
|
srcs = glob([
|
|
"*.cpp",
|
|
"FsLogger.h",
|
|
]),
|
|
hdrs = glob(
|
|
["*.h"],
|
|
exclude = ["FsLogger.h"],
|
|
),
|
|
visibility = ["//swift:__subpackages__"],
|
|
deps = ["//swift/logging"],
|
|
)
|