mirror of
https://github.com/github/codeql.git
synced 2026-02-23 10:23:41 +01:00
Add explicit load statements for cc_binary, cc_library, and cc_test from @rules_cc//cc:defs.bzl in: - shared/cpp/BUILD.bazel - swift/logging/BUILD.bazel - misc/bazel/internal/zipmerge/BUILD.bazel
14 lines
271 B
Python
14 lines
271 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "extractor_shared",
|
|
srcs = glob(["*.cpp"]),
|
|
hdrs = glob(["*.h"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@absl//absl/strings",
|
|
"@fmt",
|
|
"@json",
|
|
],
|
|
)
|